24 lines
626 B
HTML
24 lines
626 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>{{ question }}</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{# curly percent bootstrap_form approval_text_form curly percent #}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary" name="irsg_button" value="Yes">Yes</button>
|
|
<button type="submit" class="btn btn-default" name="irsg_button" value="No">No</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|