datatracker/ietf/templates/doc/ballot/undefer_ballot.html
Henrik Levkowetz 5d8306cfc8 Merged in [9733] from lars@netapp.com:
First round of HTML fixes identified by test-crawl --vnu.
 - Legacy-Id: 9764
Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
2015-07-18 08:55:30 +00:00

27 lines
730 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>{{ doc }}</small></h1>
<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 %}
<a class="btn btn-default pull-right" href="{{ back_url }}">Back</a>
<button class="btn btn-danger" type="submit">Undefer ballot</button>
{% endbuttons %}
</form>
{% endblock %}