forked from rc/aircox
27 lines
644 B
HTML
27 lines
644 B
HTML
{% extends "aircox/page.html" %}
|
|
{% comment %}List of logs for a specific date{% endcomment %}
|
|
{% 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 %}{{ block.super }}
|
|
<section>
|
|
{# <h4 class="subtitle size-4">{{ date }}</h4> #}
|
|
{% include "aircox/widgets/log_list.html" %}
|
|
</section>
|
|
{% endblock %}
|
|
|