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

24 lines
781 B
HTML

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