forked from rc/aircox
50 lines
1.4 KiB
HTML
50 lines
1.4 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 main %}
|
|
<div class="columns">
|
|
|
|
<section class="section column">
|
|
{# <h4 class="subtitle size-4">{{ date }}</h4> #}
|
|
{% with True as hide_schedule %}
|
|
<table class="table is-striped is-hoverable is-fullwidth has-background-transparent">
|
|
{% 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>
|
|
|
|
<nav class="column menu is-one-third-desktop" role="menu">
|
|
{% with "logs" as url_name %}
|
|
{% include "aircox/widgets/dates_menu.html" %}
|
|
{% endwith %}
|
|
</nav>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|