forked from rc/aircox
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
{% 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 %}
|
|
<section>
|
|
{# <h4 class="subtitle size-4">{{ date }}</h4> #}
|
|
{% with True as hide_schedule %}
|
|
<table class="table is-striped is-hoverable is-fullwidth">
|
|
{% for object in object_list %}
|
|
<tr>
|
|
<td>
|
|
{% if object|is_diffusion %}
|
|
<time datetime="{{ object.start }}" title="{{ object.start }}">
|
|
{{ object.start|date:"H:i" }} - {{ object.end|date:"H:i" }}
|
|
</time>
|
|
{% else %}
|
|
<time datetime="{{ object.date }}" title="{{ object.date }}">
|
|
{{ object.date|date:"H:i" }}
|
|
</time>
|
|
{% endif %}
|
|
</td>
|
|
<td>{% include "aircox/log_item.html" %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endwith %}
|
|
</section>
|
|
{% endblock %}
|
|
|