datatracker/ietf/templates/doc/ballot/approve_ballot.html
Lars Eggert 9d5d9d5172
fix: replace deprecated bootstrap things (#5858)
* text-muted -> text-body-secondary

* navbar-dark is deprecated

* Remove FIXME block, not an issue anymore

* Remove `navbar-light`
2023-07-18 12:22:28 -05:00

28 lines
1.1 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Approve ballot for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Approve ballot
<br>
<small class="text-body-secondary">{{ doc }}</small>
</h1>
<form method="post">
{% csrf_token %}
<pre class="border p-3 mb-3">{{ announcement }}</pre>
{% if action == "to_announcement_list" %}
<button class="btn btn-primary" type="submit">Notify RFC Editor, send announcement &amp; close ballot</button>
{% elif action == "to_rfc_editor" %}
<button class="btn btn-primary" type="submit">Email RFC Editor &amp; close ballot</button>
{% elif action == "do_not_publish" %}
<button class="btn btn-primary" type="submit">Email RFC Editor (DNP) &amp; close ballot"</button>
{% endif %}
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">
Back
</a>
</form>
{% endblock %}