{% extends "base.html" %} {% block title %}{{ t('overview.title') }} - {{ t('app.title') }}{% endblock %} {% block content %}

{{ t('overview.title') }}

{# Two columns, and what they hold is the order of the day. The next session and what is owed at J+7 are the two things that decide whether there is a next post; they take the wide column and come first. What the instance says about itself, the status and the counter, is the narrow one. #}

{{ t('overview.next_session') }}

{% if next_session %}

{{ next_session }}

{% else %}

{{ t('overview.no_next_session') }}

{% endif %} {% if due %}

{{ t('overview.due_link') }} {{ t('nav.measure') }}

{% endif %} {% if posts %}

{{ t('overview.recent') }}

{% endif %}
{% endblock %}