datatracker/ietf/templates/doc/edit_sessionpresentation.html
Lars Eggert a5cbf5307e More fixes
- Legacy-Id: 19835
2022-01-12 11:54:00 +00:00

29 lines
1 KiB
HTML

{# bs5ok #}
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Change document revision for session {{ sp.document.name }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Change document revision for session
<br>
<small class="text-muted">{{ sp.document.name }}</small>
</h1>
<h2 class="mt-3">{{ sp.document.title }} at {{ sp.session }}</h2>
{% if sp.session.is_material_submission_cutoff %}
<p class="my-3 alert alert-warning">
The deadline for submission corrections has passed. This may affect published proceedings.
</p>
{% endif %}
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button class="btn btn-primary" type="submit" name="save">Save</button>
<a class="btn btn-secondary float-end"
href="{% url 'ietf.doc.views_doc.all_presentations' name=sp.document.name %}">
Back
</a>
</form>
{% endblock %}