* 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
24 lines
772 B
HTML
24 lines
772 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2022, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Issue ballot for {{ doc }}?{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Issue ballot
|
|
<br>
|
|
<small class="text-muted">{{ doc }}</small>
|
|
</h1>
|
|
<p class="mt-3">
|
|
{{ 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">Issue ballot</button>
|
|
<button type="submit" class="btn btn-secondary float-end" name="rsab_button" value="No">Back</button>
|
|
</form>
|
|
{% endblock %}
|