datatracker/ietf/templates/meeting/finalize.html
Lars Eggert f8b48f4c43
fix: use Internet-Draft more consistently across the UI (#5104)
* s/Internet Draft/Internet-Draft/i

* s/draft/Internet-Draft/i or s/draft/I-D/i

* s/ID/I-D/

* Fix tests

* a -> an

* Undo case-change to ASCII

* Address code review comments

* Add migrations

* Add merged migration

* fix: straighten out migrations

* fix: finish straightening out migrations

---------

Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
2023-02-11 10:09:28 -06:00

29 lines
1.1 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Finalize IETF {{ meeting.number }} Proceedings{% endblock %}
{% block content %}
{% origin %}
<h1>
Finalize Proceedings
<br>
<small class="text-muted">IETF {{ meeting.number }}</small>
</h1>
<p>
This will make the proceedings for IETF {{ meeting.number }} final.
</p>
<p>
All Internet-Drafts associated with sessions that are marked "current version" will have their version set to whatever the version was at the end of the meeting.
</p>
{# This would be a good place to put any warnings about important things missing from the proceedings #}
<form method="post" class="my-3">
{% csrf_token %}
<button type="submit"
class="btn btn-primary "
name="finalize"
value="Finalize">Finalize</button>
<a class="btn btn-secondary float-end"
href="{% url 'ietf.meeting.views.proceedings' num=meeting.number %}">Back</a>
</form>
{% endblock %}