forked from DGNum/gestioCOF
14 lines
342 B
HTML
14 lines
342 B
HTML
{% extends 'kfet/base.html' %}
|
|
|
|
{% block title %}Modification de {{ settings.name }}{% endblock %}
|
|
{% block content-header-title %}Modification de {{ settings.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Mettre à jour">
|
|
</form>
|
|
|
|
{% endblock %}
|