31 lines
900 B
HTML
31 lines
900 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load django_bootstrap5 %}
|
|
|
|
{% block title %}Change revision for session{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Change document revision for session<br><small>{{sp.document.name}}<br>{{sp.document.title}}<br>at {{sp.session}}</small></h1>
|
|
|
|
{% if sp.session.is_material_submission_cutoff %}
|
|
<p class="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-primary" href="{% url 'ietf.doc.views_doc.all_presentations' name=sp.document.name %}">Cancel</a>
|
|
|
|
|
|
|
|
</form>
|
|
{% endblock content %}
|