datatracker/ietf/templates/doc/ballot/undefer_ballot.html
Ole Laursen 846ba5bb87 Summary: Facelift undefer ballot page
- Legacy-Id: 8933
2015-01-28 09:49:42 +00:00

24 lines
652 B
HTML

{% extends "ietf.html" %}
{% load bootstrap3 %}
{% block title %}Undefer ballot for {{ doc }}{% endblock %}
{% block content %}
<h1>Undefer ballot<br><small>{{ doc }}</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 %}
<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 %}