From b7d8ed8491d97eed4a6739714b035e9189198332 Mon Sep 17 00:00:00 2001
From: Robert Sparks
Date: Wed, 5 Nov 2014 21:49:44 +0000
Subject: [PATCH] add missing templates - Legacy-Id: 8590
---
.../material/edit_material_presentations.html | 23 +++++++++++++++++
ietf/templates/meeting/session_details.html | 25 +++++++++++++++++++
ietf/templates/meeting/session_list.html | 13 ++++++++++
3 files changed, 61 insertions(+)
create mode 100644 ietf/templates/doc/material/edit_material_presentations.html
create mode 100644 ietf/templates/meeting/session_details.html
create mode 100644 ietf/templates/meeting/session_list.html
diff --git a/ietf/templates/doc/material/edit_material_presentations.html b/ietf/templates/doc/material/edit_material_presentations.html
new file mode 100644
index 000000000..657a7cfad
--- /dev/null
+++ b/ietf/templates/doc/material/edit_material_presentations.html
@@ -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 %}
+
+Edit Upcoming Presentations of
{{doc.title}}
{{doc.name}}
at {{session}}
+
+
+
+{% endblock content %}
diff --git a/ietf/templates/meeting/session_details.html b/ietf/templates/meeting/session_details.html
new file mode 100644
index 000000000..dc1e8028e
--- /dev/null
+++ b/ietf/templates/meeting/session_details.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+
+{% block title %} {{meeting}} : {{acronym}} {% endblock %}
+
+{% block morecss %}
+.timeheader {font-size:120%;}
+{% endblock %}
+
+{% block content %}
+ {{ meeting }} : {{ acronym }} : {{ time }}
+{% if session.name %}
+ {{session.name}}
+{% endif %}
+
+{% if session.sessionpresentation_set.all.count %}
+Materials:
+
+
+{% endif %}
+
+{% endblock %}
diff --git a/ietf/templates/meeting/session_list.html b/ietf/templates/meeting/session_list.html
new file mode 100644
index 000000000..222127acf
--- /dev/null
+++ b/ietf/templates/meeting/session_list.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+
+{% block title %} {{meeting}} : {{acronym}} {% endblock %}
+
+{% block content %}
+ {{ meeting }} : {{acronym}}
+
+
+{% for session in sessions %}
+ - {{session}}
+{% endfor %}
+
+{% endblock %}