blob: faa175ae6cbdbcea31f0f8c5a46c3b5673a16488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html.j2" %}
{% block content %}
<h2>Confirm deletion of voter <span class="contrast">{{ voter_name }}</span></h2>
<p>Are you sure you want to delete the submission by {{ voter_name }}?</p>
<form action="/poll/{{ poll_id }}/confirm_delete_voter" method="post">
<input type="hidden" name="voter_code" value="{{ voter_code }}">
<input class="red" type="submit" value="Yes, delete it">
</form>
{% endblock %}
|