datatracker/ietf/templates/doc/charter/ballot_issued.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

19 lines
553 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Ballot for {{ doc.name }} issued{% endblock %}
{% block content %}
{% origin %}
<h1>
Ballot issued
<br>
<small class="text-body-secondary">{{ doc.name }}</small>
</h1>
<p>
Ballot has been sent out.
</p>
<div class="buttonlist">
<a class="btn btn-secondary"
href="{% url 'ietf.doc.views_doc.document_writeup' name=doc.name %}">Back</a>
</div>
{% endblock %}