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

28 lines
739 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Defer ballot for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>Defer ballot<br><small>{{ doc }}</small></h1>
<form role="form" method="post">
{% csrf_token %}
<p class="alert alert-danger">
<b>Defer 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="{% url "doc_view" name=doc.name %}">Back</a>
<button type="submit" class="btn btn-danger">Defer ballot</button>
{% endbuttons %}
</form>
{% endblock %}