epcstages/templates/candidats/convocation.html

20 lines
456 B
HTML

{% 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 %}