diff --git a/pinaxcon/templates/symposion/schedule/_edit_grid.html b/pinaxcon/templates/symposion/schedule/_edit_grid.html new file mode 100644 index 0000000000000000000000000000000000000000..713909f288924d5e1bcc5d8e4f683e175784c0b4 --- /dev/null +++ b/pinaxcon/templates/symposion/schedule/_edit_grid.html @@ -0,0 +1,39 @@ + + + + + {% for room in timetable.rooms %} + + {% endfor %} + + + + {% for row in timetable %} + + + {% for slot in row.slots %} + + {% endfor %} + {% if forloop.last %} + + {% endif %} + + {% endfor %} + +
 {{ room.name }}
{{ row.time|date:"h:iA" }} + {% if slot.kind.label == "talk" or slot.kind.label == "tutorial" %} + {% if not slot.content %} + + + {% else %} + {{ slot.content.title }} + {{ slot.content.speaker }} + {% endif %} + {% else %} + {% if slot.content_override.raw %} + {{ slot.content_override.rendered|safe }} + {% else %} + {{ slot.kind.label }} + {% endif %} + — edit + {% endif %} +