diff --git a/symposion/schedule/views.py b/symposion/schedule/views.py index 3e98f767..a90a987f 100644 --- a/symposion/schedule/views.py +++ b/symposion/schedule/views.py @@ -38,6 +38,7 @@ def schedule_list(request, slug=None): presentations = presentations.exclude(cancelled=True).order_by("id") ctx = { + "schedule": schedule, "presentations": presentations, } return render(request, "schedule/schedule_list.html", ctx) diff --git a/symposion/templates/schedule/schedule_list.html b/symposion/templates/schedule/schedule_list.html index 79372d1b..0ad1774e 100644 --- a/symposion/templates/schedule/schedule_list.html +++ b/symposion/templates/schedule/schedule_list.html @@ -24,7 +24,7 @@ {% endblock %} {% block body %} -

Accepted Presentations

+

Accepted {{ schedule.section.name }}

{% for presentation in presentations %}