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 %}