datatracker/ietf/templates/doc/ballot/undefer_ballot.html

26 lines
726 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Undefer ballot for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>Undefer ballot<br><small><a href="{% url "doc_view" name=doc.canonical_name %}">{{ doc }}</a></small></h1>
<form role="form" class="undefer" method="post">
{% csrf_token %}
<p class="alert alert-danger">
<b>Undefer the ballot for {{ doc }}?</b>
<br>
The ballot will then be put on the IESG agenda of {{ telechat_date }}.
</p>
{% buttons %}
<button class="btn btn-danger" type="submit">Undefer ballot</button>
{% endbuttons %}
</form>
{% endblock %}