First round of HTML fixes identified by test-crawl --vnu. - Legacy-Id: 9764 Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
29 lines
989 B
HTML
29 lines
989 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Approve ballot for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Approve ballot<br><small>{{ doc }}</small></h1>
|
|
|
|
<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 %}
|