add missing templates
- Legacy-Id: 8590
This commit is contained in:
parent
c436607039
commit
b7d8ed8491
23
ietf/templates/doc/material/edit_material_presentations.html
Normal file
23
ietf/templates/doc/material/edit_material_presentations.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
Edit Upcoming Presentations
|
||||
{% endblock %}
|
||||
|
||||
{% block morecss %}
|
||||
{{ block.super }}
|
||||
ul#id_versions { list-style-type: none; padding: 0px; margin: 0px; }
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% load ietf_filters %}
|
||||
|
||||
<h1>Edit Upcoming Presentations of<br/>{{doc.title}}<br/>{{doc.name}}<br/>at {{session}}</h1>
|
||||
|
||||
<form method="post">{% csrf_token %}
|
||||
{{form.as_p}}
|
||||
<input style="button" type="submit" name="action" value="Save"/>
|
||||
<input style="button" type="submit" name="action" value="Cancel"/>
|
||||
</form>
|
||||
|
||||
{% endblock content %}
|
25
ietf/templates/meeting/session_details.html
Normal file
25
ietf/templates/meeting/session_details.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %} {{meeting}} : {{acronym}} {% endblock %}
|
||||
|
||||
{% block morecss %}
|
||||
.timeheader {font-size:120%;}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1> {{ meeting }} : {{ acronym }} : {{ time }} </h1>
|
||||
{% if session.name %}
|
||||
<h2> {{session.name}} </h2>
|
||||
{% endif %}
|
||||
|
||||
{% if session.sessionpresentation_set.all.count %}
|
||||
<p>Materials:
|
||||
<ul>
|
||||
{% for pres in session.sessionpresentation_set.all %}
|
||||
<li><a href="{% url 'doc_view' name=pres.document.name rev=pres.rev%}">{{pres.document.name}}-{{pres.rev}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
13
ietf/templates/meeting/session_list.html
Normal file
13
ietf/templates/meeting/session_list.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %} {{meeting}} : {{acronym}} {% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1> {{ meeting }} : {{acronym}} </h1>
|
||||
|
||||
<ul>
|
||||
{% for session in sessions %}
|
||||
<li> <a href="{{forloop.counter}}">{{session}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue