aircox-radiocampus/radiocampus/templates/aircox/home_timetable_list.html

34 lines
865 B
HTML

{% extends "aircox/page_list.html" %}
{% comment %}List of diffusions as a timetable{% endcomment %}
{% load i18n aircox humanize %}
{% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %}
{% block secondary-nav %}
{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block list-container %}
<br />
<br />
<div style="display: flex; justify-content: flex-end;height:100%;">
<div style="min-width:300px;margin-right:12%">
<!-- <a href="{% url "timetable-list" date=date %}">{{ date|date:"l d F Y" }}</a> -->
<section class="clear-both list grid radiocampus-grid" role="list">
<span class="title today">Aujourd'hui</span>
</section>
{% with list_class="radiocampus-grid" %}
{{ block.super }}
{% endwith %}
</div>
</div>
{% endblock %}
{% block list %}
{% include "./widgets/logs.html" with object_list=object_list timetable=True %}
{% endblock %}