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