Add EDE convocation form

This commit is contained in:
Claude Paroz 2018-01-26 18:19:16 +01:00
parent 1f49b198ec
commit ffb54c9f78
9 changed files with 207 additions and 2 deletions

View file

@ -0,0 +1,20 @@
{% extends "admin/base_site.html" %}
{% load i18n static %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
&rsaquo; Envoi de la convocation EDE
</div>
{% endblock %}
{% block content %}
<h2>{{ candidat }}</h2>
<form name="convocation" action="." method="post">{% csrf_token %}
<table>
{{ form.as_table }}
<tr><td><input type="submit" value="Envoyer"></td></tr>
</table>
</form>
{% endblock %}