forked from rc/aircox
31 lines
737 B
HTML
31 lines
737 B
HTML
{% extends "aircox/page_list.html" %}
|
|
{% comment %}List of diffusions as a timetable{% endcomment %}
|
|
{% load i18n aircox humanize %}
|
|
|
|
{% block title %}
|
|
{% if not page or not page.title %}
|
|
{% with station.name as station %}
|
|
{% blocktranslate %}This week on {{ station }}{% endblocktranslate %}
|
|
{% endwith %}
|
|
{% else %}
|
|
{{ block.super }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %}
|
|
|
|
{% block before_list %}
|
|
{% with "diffusion-list" as url_name %}
|
|
{% include "aircox/widgets/dates_menu.html" %}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block pages_list %}
|
|
{% with hide_schedule=True %}
|
|
<section role="list">
|
|
{% include 'aircox/widgets/diffusion_list.html' %}
|
|
</section>
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|