Skip to content

Commit 8bde162

Browse files
committed
Include an HTML template missed in the previous commit. Fixes ietf-tools#2835. Commit ready for merge.
- Legacy-Id: 18372
1 parent 21ba67f commit 8bde162

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% extends "base.html" %}
2+
{# Copyright The IETF Trust 2020, All Rights Reserved #}
3+
{% load origin staticfiles bootstrap3 %}
4+
5+
{% block title %}Approved Slides for {{ submission.session.meeting }} : {{ submission.session.group.acronym }}{% endblock %}
6+
7+
{% block content %}
8+
{% origin %}
9+
10+
<h1>These slides have already been {% if submission.status.slug == 'approved' %} approved {% else %} rejected {% endif %}</h1>
11+
12+
<p>The slides from {{ submission.submitter }} have already been {% if submission.status.slug == 'approved' %} approved {% else %} rejected {% endif %}. No further action is needed.</p>
13+
14+
<p>You may wish to
15+
{% if submission.status.slug == 'approved' and submission.doc %}
16+
<a href="{% url 'ietf.doc.views_doc.document_main' name=submission.doc.name %}">view the slides</a> or
17+
{% endif %}
18+
<a href="{% url "ietf.meeting.views.session_details" num=submission.session.meeting.number acronym=submission.session.group.acronym %}">return to this meeting session</a>.</p>
19+
20+
{% endblock %}

0 commit comments

Comments
 (0)