From 5ab731e8665df7f5c26a9dae1cb8750ce822a8d6 Mon Sep 17 00:00:00 2001 From: bkfox Date: Sun, 24 Jul 2016 14:51:33 +0200 Subject: [PATCH] add missing dated_list_page.html --- cms/templates/cms/dated_list_page.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cms/templates/cms/dated_list_page.html diff --git a/cms/templates/cms/dated_list_page.html b/cms/templates/cms/dated_list_page.html new file mode 100644 index 0000000..d22c147 --- /dev/null +++ b/cms/templates/cms/dated_list_page.html @@ -0,0 +1,15 @@ +{% extends "cms/base_site.html" %} +{# display a timetable of planified diffusions by days #} + +{% load wagtailcore_tags %} + +{% block content %} +{% if page.body %} +
+{{ page.body|richtext }} +
+{% endif %} + +{% include "cms/snippets/date_list.html" %} +{% endblock %} +