kadenios/elections/templates/elections/delete_vote.html
2021-04-13 15:22:53 +02:00

40 lines
994 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h1 class="title">{% trans "Supprimer un vote" %}</h1>
<hr>
<div class="columns is-centered">
<div class="column is-half">
<form method="post">
{% csrf_token %}
{% include "forms/form.html" %}
<div class="field is-grouped is-centered">
<div class="control is-expanded">
<button class="button is-fullwidth is-outlined is-primary is-light">
<span class="icon">
<i class="fas fa-check"></i>
</span>
<span>{% trans "Enregistrer" %}</span>
</button>
</div>
<div class="control">
<a class="button is-primary" href="{% url 'election.voters' election.pk %}#v_{{ anchor }}">
<span class="icon">
<i class="fas fa-undo-alt"></i>
</span>
<span>{% trans "Retour" %}</span>
</a>
</div>
</div>
</form>
</div>
</div>
{% endblock %}