This commit is contained in:
bkfox
2016-07-22 15:02:11 +02:00
parent d20b5ccdda
commit ee91ff76e7
4 changed files with 191 additions and 190 deletions

View File

@ -2,6 +2,7 @@
{# generic page to display list of articles #}
{% load i18n %}
{% load wagtailcore_tags %}
{% load wagtailimages_tags %}
@ -31,8 +32,13 @@
{{ thread_query.summary }}
<a href="{{ thread_query.url }}">{% trans "More about it" %}</a>
</div>
{% elif page.body %}
<div class="body">
{{ page.body|richtext }}
</div>
{% endif %}
{% with list_paginator=paginator %}
{% include "cms/snippets/list.html" %}
{% endwith %}

View File

@ -1,7 +0,0 @@
{% extends "cms/base_site.html" %}
{# display logs of what happened on air %}
{% block content %}
{% include "cms/snippets/date_list.html" %}
{% endblock %}

View File

@ -1,7 +0,0 @@
{% extends "cms/base_site.html" %}
{# display a timetable of planified diffusions by days #}
{% block content %}
{% include "cms/snippets/date_list.html" %}
{% endblock %}