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 %} +