forked from DGNum/gestioCOF
85caa6b058
Old configuration(/settings), based on Settings model, system is deleted: SettingsForm, Settings. New system use `django-djconfig` module. - `kfet.config` module provides `kfet_config` to access configuration concerning kfet app. - Views, forms, models, etc now use this object to retrieve conf values. - Views no longer add config values to context, instead templates use `kfet_config` provided by a new context_processor. - Enhance list and update views of settings. - Fix: settings can directly be used without having to visit a specific page... Misc - Delete some py2/3 imports - Delete unused imports in kfet.models and kfet.views - Some PEP8 compliance
25 lines
759 B
HTML
25 lines
759 B
HTML
{% extends 'kfet/base.html' %}
|
|
|
|
{% block title %}Modification des paramètres{% endblock %}
|
|
{% block content-header-title %}Modification des paramètres{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "kfet/base_messages.html" %}
|
|
|
|
<div class="row form-only">
|
|
<div class="col-sm-12 col-md-8 col-md-offset-2">
|
|
<div class="content-form">
|
|
<form submit="" method="post" class="form-horizontal">
|
|
{% csrf_token %}
|
|
{% include 'kfet/form_snippet.html' with form=form %}
|
|
{% if not perms.kfet.change_settings %}
|
|
{% include 'kfet/form_authentication_snippet.html' %}
|
|
{% endif %}
|
|
{% include 'kfet/form_submit_snippet.html' with value="Mettre à jour" %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|