datatracker/ietf/templates/doc/ballot/undefer_ballot.html
Lars Eggert 448c6dbe9e And more bs5 stuff
- Legacy-Id: 19717
2021-12-01 13:52:50 +00:00

28 lines
769 B
HTML

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