ernestophone.ens.fr/templates/pads/update.html

11 lines
241 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block titre %}Modification du pad{% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Enregistrer" />
</form>
{% endblock %}