diff --git a/elections/templates/elections/election_voters.html b/elections/templates/elections/election_voters.html index 9a9fc94..6078013 100644 --- a/elections/templates/elections/election_voters.html +++ b/elections/templates/elections/election_voters.html @@ -2,6 +2,27 @@ {% load i18n %} +{% block extra_head %} + + +{% endblock %} + {% block content %}
- {% url 'election.delete-vote' election.pk v.pk forloop.counter as post_url %} - {% blocktrans with v_name=v.full_name asvar modal_title %}Supprimer le vote de {{ v_name }}{% endblocktrans %} - + {% blocktrans with v_name=v.full_name asvar v_delete %}Supprimer le vote de {{ v_name }}{% endblocktrans %} + - {% include "forms/modal-form.html" with modal_id=forloop.counter form=v.form %} {% endif %} |