20 lines
441 B
HTML
20 lines
441 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n static %}
|
|
|
|
{% block breadcrumbs %}
|
|
<div class="breadcrumbs">
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
› {{ 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>
|
|
</form>
|
|
{% endblock %}
|