diff --git a/symposion/templates/schedule/_grid.html b/symposion/templates/schedule/_grid.html index f546fd00..de8b51d0 100644 --- a/symposion/templates/schedule/_grid.html +++ b/symposion/templates/schedule/_grid.html @@ -11,7 +11,16 @@ {% for slot in row.slots %} {% if slot.kind.label == "talk" %} - add: talk + {% if not slot.presentation %} + + + {% else %} +
{{ slot.presentation.title }}
+
{{ slot.presentation.speaker }}
+ + + Edit + + {% endif %} {% else %} {{ slot.kind.label }} {% endif %} diff --git a/symposion/templates/schedule/schedule_edit.html b/symposion/templates/schedule/schedule_edit.html index 75c5f799..2c6589a8 100644 --- a/symposion/templates/schedule/schedule_edit.html +++ b/symposion/templates/schedule/schedule_edit.html @@ -1,5 +1,8 @@ {% extends "site_base.html" %} +{% load i18n %} +{% load bootstrap_tags %} + {% block head_title %}Conference Schedule Edit{% endblock %} {% block body_class %}full{% endblock %} @@ -77,5 +80,32 @@ {% include "schedule/_grid.html" %} {% endfor %} + + {% endblock %} + +{% block extra_script %} + +{% endblock %}