From c9bd93582cc4a6aef17fa06e22216f12d164e724 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Mon, 8 Aug 2016 20:22:53 +0200 Subject: [PATCH] add buttons for other schedule pages to base template --- program/templates/program_base.html | 8 ++++---- program/templates/program_overview.html | 5 ----- program/templates/schedule_base.html | 16 ++++++++++++++++ 3 files changed, 20 insertions(+), 9 deletions(-) create mode 100644 program/templates/schedule_base.html diff --git a/program/templates/program_base.html b/program/templates/program_base.html index 060db1b5..03f61294 100644 --- a/program/templates/program_base.html +++ b/program/templates/program_base.html @@ -1,6 +1,6 @@ -{% extends 'base.html' %} +{% extends 'schedule_base.html' %} -{% block content %} +{% block schedule_content %} Overview @@ -18,6 +18,6 @@
{% block program_content %} -{% endblock %} +{% endblock program_content %} -{% endblock %} +{% endblock schedule_content %} diff --git a/program/templates/program_overview.html b/program/templates/program_overview.html index 07fa2363..ba61d8e5 100644 --- a/program/templates/program_overview.html +++ b/program/templates/program_overview.html @@ -1,11 +1,6 @@ {% extends 'program_base.html' %} {% block program_content %} -

- Call for Speakers - Speakers - Talks & Events -

All diff --git a/program/templates/schedule_base.html b/program/templates/schedule_base.html new file mode 100644 index 00000000..f74402ce --- /dev/null +++ b/program/templates/schedule_base.html @@ -0,0 +1,16 @@ +{% extends 'base.html' %} + +{% block content %} +

+ Schedule + Call for Speakers + Speakers + Talks & Events +

+ +
+ +{% block schedule_content %} +{% endblock schedule_content %} + +{% endblock content %}