{% extends "aircox/page.html" %} {% load i18n humanize aircox %} {% block title %} {% with station.name as station %} {% blocktrans %}That happened on {{ station }}{% endblocktrans %} {% endwith %} {% endblock %} {% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %} {% block filters %} {% with "log-list" as url_name %} {% include "aircox/widgets/dates_menu.html" %} {% endwith %} {% endblock %} {% block main %} {# {{ date }} #} {% with True as hide_schedule %} {% for object in object_list %} {% if object|is_diffusion %} {{ object.start|date:"H:i" }} - {{ object.end|date:"H:i" }} {% else %} {{ object.date|date:"H:i" }} {% endif %} {% include "aircox/log_item.html" %} {% endfor %} {% endwith %} {% endblock %}