kpsul/cof/templates/demande-petit-cours.html
Martin Pépin 5aff771d9c Set the new structure of gestioCOF
- `cof` is renamed `gestioCOF`
- `gestioncof` become `cof` (yes it looks pretty stupid but it is not)
- `bds` is created
2017-02-09 21:28:36 +01:00

17 lines
626 B
HTML

{% extends "base_title.html" %}
{% block realcontent %}
<h2>Demande de petits cours</h2>
{% if success %}
<p class="success">Votre demande a été enregistrée avec succès !</p>
{% else %}
<form id="demandecours" method="post" action="{% url "cof.petits_cours_views.demande" %}">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" class="btn-submit" value="Enregistrer" />
</form>
{% endif %}
{% endblock %}