8 lines
187 B
HTML
8 lines
187 B
HTML
|
{% extends 'base.html' %}
|
||
|
{% block content %}
|
||
|
<form action="" method="post">{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<input type="submit" value="Mettre à jour" />
|
||
|
</form>
|
||
|
{% endblock %}
|