datatracker/ietf/templates/doc/ballot/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

29 lines
877 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Ballot issued for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Ballot issued
<br>
<small class="text-body-secondary">{{ doc }}</small>
</h1>
<p>
Ballot for
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc }}</a>
has been sent out.
</p>
{% if doc.telechat_date %}
<p>
The document is currently on the <b>{{ doc.telechat_date }}</b> telechat agenda.
</p>
{% else %}
<p>
The document is not on any telechat agenda.
</p>
{% endif %}
<a class="btn btn-secondary"
href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">Back</a>
{% endblock %}