epcstages/templates/email_base.html

21 lines
477 B
HTML

{% extends "admin/base_site.html" %}
{% load i18n static %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
&rsaquo; {{ title }}
</div>
{% endblock %}
{% block content %}
<h2>{{ candidat }}</h2>
<form name="confirmation" action="." method="post">{% csrf_token %}
<table>
{{ form.as_table }}
<tr><td><input type="submit" value="Envoyer"></td></tr>
</table>
{% block post_form %}{% endblock %}
</form>
{% endblock %}