{% extends "admin_base.html" %} {% load i18n %} {% load tz %} {% block title %}{% trans "Status" %}: {{event}}{% endblock %} {% block content %}

{{event}}

{% timezone event.timezone %}
{{ event.start }} - {{ event.end }}

{% trans "Categories" %}

{% if event.akcategory_set.count == 0 %}

{% trans "No categroies yet" %}

{% else %}

{{ event.akcategory_set.count }}: {% for category in event.akcategory_set.all %} {% if forloop.counter0 > 0 %} · {% endif %} {{ category }} ({{ category.ak_set.count }}) {% endfor %}

{% endif %} {% trans "Add category" %}

{% trans "Rooms" %}

{% if event.room_set.count == 0 %}

{% trans "No rooms yet" %}

{% else %}

{{ event.room_set.count }}: {% for room in event.room_set.all %} {% if forloop.counter0 > 0 %} · {% endif %} {{ room }} {% endfor %}

{% endif %} {% trans "Add Room" %}

{% trans "AKs" %}

{% if event.ak_set.count == 0 %}

{% trans "No AKs yet" %}

{% else %}
{% trans "AKs" %}{{ event.ak_set.count }}
{% trans "Slots" %}{{ event.akslot_set.count }}
{% trans "Unscheduled Slots" %}{{ unscheduled_slots_count }}
{% endif %} {% endtimezone %} {% endblock %}