40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Request closing of {{ group.acronym }} {{ group.type.name }}{% endblock %}
|
|
|
|
{% block morecss %}
|
|
#id_instructions {
|
|
width: 40em;
|
|
}
|
|
|
|
form.conclude .actions {
|
|
text-align: right;
|
|
padding-top: 10px;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Request closing of {{ group.acronym }} {{ group.type.name }}</h1>
|
|
|
|
<p>
|
|
Please provide instructions regarding the disposition of each
|
|
active Internet-Draft (such as to withdraw the draft, move it to
|
|
another group, convert it to an individual submission, and so on),
|
|
wording for the closure announcement, and the status of the group
|
|
mailing list (will it remain open or should it be closed).
|
|
</p>
|
|
|
|
<form class="conclude" action="" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
<tr>
|
|
<td colspan="2" class="actions">
|
|
<a class="button" href="{% url "group_charter" group_type=group.type_id acronym=group.acronym %}">Cancel</a>
|
|
<input class="button" type="submit" value="Send request"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
{% endblock %}
|