datatracker/ietf/templates/doc/ballot/approve_ballot.html
Ole Laursen 1d2883a9a2 Summary: Fix some inconsistencies regarding whether to use
{% buttons %} or <div class="buttonlist"> for form buttons
 - Legacy-Id: 8992
2015-02-05 14:44:08 +00:00

24 lines
861 B
HTML

{% extends "ietf.html" %}
{% block title %}Approve ballot for {{ doc }}{% endblock %}
{% block content %}
<h1>Approve ballot<br><small>{{ doc }}</small></h1>
<form role="form" method="post">
{% csrf_token %}
<pre>{{ announcement }}</pre>
{% buttons %}
{% if action == "to_announcement_list" %}
<button class="btn btn-warning" type="submit">Notify RFC Editor, send announcement & close ballot</button>
{% elif action == "to_rfc_editor" %}
<button class="btn btn-warning" type="submit">Email RFC Editor & close ballot</button>
{% elif action == "do_not_publish" %}
<button class="btn btn-warning" type="submit">Email RFC Editor (DNP) & close ballot"/>
{% endif %}
<a class="btn btn-default pull-right" href="{% url "doc_ballot_approvaltext" name=doc.name %}">Back</a>
{% endbuttons %}
</form>
{% endblock %}