{% extends "AKPlan/plan_base.html" %} {% load fontawesome_5 %} {% load i18n %} {% load static %} {% load tz %} {% block fullcalendar %} {% if not event.plan_hidden or user.is_staff %} {% get_current_language as LANGUAGE_CODE %} {% endif %} {% endblock %} {% block breadcrumbs %} {% include "AKPlan/plan_breadcrumbs.html" %} {% endblock %} {% block content %}

Plan: {{ event }}

{% timezone event.timezone %}
{% if not event.plan_hidden or user.is_staff %} {% if event.active %}

{% trans "Current AKs" %}:

{% with akslots_now as slots %} {% include "AKPlan/slots_table.html" %} {% endwith %}

{% trans "Next AKs" %}:

{% with akslots_next as slots %} {% include "AKPlan/slots_table.html" %} {% endwith %}
{% else %}

{% trans "This event is not active." %}

{% endif %}
{% else %}

{% trans "Plan is not visible (yet)." %}

{% endif %}
{% endtimezone %} {% endblock %}