28 lines
935 B
HTML
28 lines
935 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Clear ballot for {{ doc }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Clear ballot
|
|
<br>
|
|
<small class="text-body-secondary">{{ doc }}</small>
|
|
</h1>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p class="alert alert-danger my-3">
|
|
<b>Clear the ballot for
|
|
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">{{ doc }}</a>?
|
|
</b>
|
|
<br>
|
|
This will clear all ballot positions and discuss entries.
|
|
</p>
|
|
<button type="submit" class="btn btn-danger">Clear</button>
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">
|
|
Back
|
|
</a>
|
|
</form>
|
|
{% endblock %} |