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

22 lines
725 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2019, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Close ballot for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Close ballot
<br>
<small class="text-body-secondary">{{ doc }}</small>
</h1>
<p>
{{ question }}
</p>
<form method="post">
{% csrf_token %}
{# curly percent bootstrap_form approval_text_form curly percent #}
<button type="submit" class="btn btn-primary" name="irsg_button" value="Yes">Yes</button>
<button type="submit" class="btn btn-primary" name="irsg_button" value="No">No</button>
</form>
{% endblock %}