Skip to content

Commit b7d8ed8

Browse files
committed
add missing templates
- Legacy-Id: 8590
1 parent c436607 commit b7d8ed8

3 files changed

Lines changed: 61 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{% extends "base.html" %}
2+
3+
{% block title %}
4+
Edit Upcoming Presentations
5+
{% endblock %}
6+
7+
{% block morecss %}
8+
{{ block.super }}
9+
ul#id_versions { list-style-type: none; padding: 0px; margin: 0px; }
10+
{% endblock %}
11+
12+
{% block content %}
13+
{% load ietf_filters %}
14+
15+
<h1>Edit Upcoming Presentations of<br/>{{doc.title}}<br/>{{doc.name}}<br/>at {{session}}</h1>
16+
17+
<form method="post">{% csrf_token %}
18+
{{form.as_p}}
19+
<input style="button" type="submit" name="action" value="Save"/>
20+
<input style="button" type="submit" name="action" value="Cancel"/>
21+
</form>
22+
23+
{% endblock content %}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{% extends "base.html" %}
2+
3+
{% block title %} {{meeting}} : {{acronym}} {% endblock %}
4+
5+
{% block morecss %}
6+
.timeheader {font-size:120%;}
7+
{% endblock %}
8+
9+
{% block content %}
10+
<h1> {{ meeting }} : {{ acronym }} : {{ time }} </h1>
11+
{% if session.name %}
12+
<h2> {{session.name}} </h2>
13+
{% endif %}
14+
15+
{% if session.sessionpresentation_set.all.count %}
16+
<p>Materials:
17+
<ul>
18+
{% for pres in session.sessionpresentation_set.all %}
19+
<li><a href="{% url 'doc_view' name=pres.document.name rev=pres.rev%}">{{pres.document.name}}-{{pres.rev}}</a></li>
20+
{% endfor %}
21+
</ul>
22+
</p>
23+
{% endif %}
24+
25+
{% endblock %}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{% extends "base.html" %}
2+
3+
{% block title %} {{meeting}} : {{acronym}} {% endblock %}
4+
5+
{% block content %}
6+
<h1> {{ meeting }} : {{acronym}} </h1>
7+
8+
<ul>
9+
{% for session in sessions %}
10+
<li> <a href="{{forloop.counter}}">{{session}}</a></li>
11+
{% endfor %}
12+
</ul>
13+
{% endblock %}

0 commit comments

Comments
 (0)