19 lines
486 B
HTML
19 lines
486 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Undefer ballot for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Undefer ballot for {{ doc }}</h1>
|
|
|
|
<form class="undefer" action="" method="post">{% csrf_token %}
|
|
<p>Undefer the ballot for {{ doc.file_tag }}?</p>
|
|
|
|
<p>The ballot will then be on the IESG agenda of {{ telechat_date }}.</p>
|
|
|
|
<div class="actions">
|
|
<a href="{{ back_url }}">Back</a>
|
|
<input type="submit" value="Undefer ballot"/>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|