* feat: enable editorial stream adoption and balloting * fix: bring tests into line with refactor * feat: force intended_std_level to Informational when adopting into a non-ietf stream. * fix: improve blocking position labels and email content * fix: simplify pointer to group on doc main page for rswg docs * fix: recover from merge typos * fix: correct defer and clear ballot behavior * fix: improve publication request access logic * fix: clean up broken editorial state * fix: adjust test to match migrations
23 lines
717 B
HTML
23 lines
717 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2022, 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="rsab_button" value="Yes">Yes</button>
|
|
<button type="submit" class="btn btn-primary" name="rsab_button" value="No">No</button>
|
|
</form>
|
|
{% endblock %}
|