32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
{# bs5ok #}
|
|
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2019, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load django_bootstrap5 %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static 'ietf/css/datepicker.css' %}">
|
|
{% endblock %}
|
|
{% block title %}Issue ballot for {{ doc }}?{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Issue 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 #}
|
|
Due date for this ballot:
|
|
<input type="text" data-provide="datepicker" data-date-format="yyyy-mm-dd" placeholder="{{ fillerdate }}" name="duedate">
|
|
<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 %}
|
|
{% block js %}
|
|
<script src="{% static 'ietf/js/datepicker.js' %}"></script>
|
|
{% endblock %} |