datatracker/ietf/templates/doc/ballot/irsg_ballot_close.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

22 lines
716 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-muted">{{ 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 %}