epcstages/templates/email_base.html

22 lines
475 B
HTML
Raw Normal View History

2018-01-26 18:19:16 +01:00
{% extends "admin/base_site.html" %}
{% load i18n static %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
2018-02-01 14:39:40 +01:00
&rsaquo; {{ title }}
2018-01-26 18:19:16 +01:00
</div>
{% endblock %}
{% block content %}
<h2>{{ person }}</h2>
2018-02-01 14:39:40 +01:00
<form name="confirmation" action="." method="post">{% csrf_token %}
2018-01-26 18:19:16 +01:00
<table>
{{ form.as_table }}
<tr><td><input type="submit" value="Envoyer"></td></tr>
</table>
{% block post_form %}{% endblock %}
2018-01-26 18:19:16 +01:00
</form>
{% endblock %}