Conflicts: ietf/doc/templatetags/ietf_filters.py ietf/doc/views_charter.py ietf/templates/doc/charter/edit_notify.html ietf/templates/doc/charter/edit_telechat_date.html ietf/templates/doc/document_ballot_content.html ietf/templates/doc/document_history.html ietf/templates/doc/edit_notify.html ietf/templates/doc/edit_telechat_date.html ietf/templates/doc/notify.html ietf/templates/group/concluded_groups.html - Legacy-Id: 8429
24 lines
834 B
HTML
24 lines
834 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>
|
|
|
|
<div class="buttonlist">
|
|
{% 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>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|