19 lines
437 B
HTML
19 lines
437 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Clear ballot for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Clear ballot for {{ doc }}</h1>
|
|
|
|
<form action="" method="POST">
|
|
<p>Clear the ballot for {{ doc.file_tag }}?</p>
|
|
|
|
<p>This will clear all ballot positions and discuss entries.</p>
|
|
|
|
<div class="actions">
|
|
<a href="{{ back_url }}">Back</a>
|
|
<input type="submit" value="Clear ballot"/>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|