* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
19 lines
553 B
HTML
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 %} |