22 lines
716 B
HTML
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 %} |