datatracker/ietf/templates/group/conclude.html
Lars Eggert 53089a94f6 And more fixes.
- Legacy-Id: 19902
2022-02-01 07:47:25 +00:00

23 lines
1,016 B
HTML

{# bs5ok #}
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Request closing of {{ group.acronym }} {{ group.type.name }}{% endblock %}
{% block content %}
{% origin %}
<h1>Request closing of {{ group.acronym }} {{ group.type.name }}</h1>
<p class="alert alert-info my-3">
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 method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-primary">Submit</button>
<a class="btn btn-secondary float-end" href="{{ group.about_url }}">Back</a>
</form>
{% endblock %}