datatracker/ietf/templates/doc/ballot/defer_ballot.html
Lars Eggert df2565096d bootstrap3 -> django_bootstrap5
Only load the module, no other changes yet.
 - Legacy-Id: 19586
2021-11-09 14:09:28 +00:00

27 lines
722 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Defer ballot for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>Defer ballot<br><small><a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc }}</a></small></h1>
<form method="post">
{% csrf_token %}
<p class="alert alert-danger">
<b>Defer the ballot for {{ doc }}?</b>
<br>
The ballot will then be put on the IESG agenda of {{ telechat_date }}.
</p>
{% buttons %}
<button type="submit" class="btn btn-danger">Defer ballot</button>
{% endbuttons %}
</form>
{% endblock %}