forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremove_sessionpresentation.html
More file actions
43 lines (43 loc) · 1.39 KB
/
remove_sessionpresentation.html
File metadata and controls
43 lines (43 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Remove {{ sp.document }} from session{% endblock %}
{% block content %}
{% origin %}
<h1>Confirm removing document from session {{ sp.session }}</h1>
{% if sp.session.is_material_submission_cutoff %}
<p class="alert alert-warning my-3">
The deadline for submission corrections has passed. This may affect published proceedings.
</p>
{% endif %}
<h2 class="mt-3">Document</h2>
<p>
<strong>{{ sp.document.name }}
{% if sp.rev %}
-{{ sp.rev }}
{% else %}
(current version)
{% endif %}
</strong>
</p>
<p>
{{ sp.document.title }}
</p>
<h2 class="mt-3">Session</h2>
<p>
{{ sp.session }}
</p>
<form method="post">
{% csrf_token %}
<button type="submit"
class="btn btn-{% if sp.session.is_material_submission_cutoff %}warning{% else %}primary{% endif %}"
name="remove_session">
Remove from session
</button>
<a class="btn btn-secondary float-end"
href="{% url 'ietf.meeting.views.session_details' num=sp.session.meeting.number acronym=sp.session.group.acronym %}">
Back
</a>
</form>
{% endblock %}