{% extends "admin/base_site.html" %} {% load tags_AKModel %} {% load i18n %} {% load l10n %} {% load tz %} {% load static %} {% load tags_AKPlan %} {% load fontawesome_6 %} {% block title %}{{ title }}{% endblock %} {% block content %}

{% trans "AKs with public notes" %}

{% for ak in aks_with_comment %} {{ ak }}
{{ ak.notes }}

{% empty %} - {% endfor %}

{% trans "AKs without availabilities" %}

{% for ak in aks_without_availabilities %} {{ ak }}
{% empty %} -
{% endfor %} {% trans "Create default availabilities" %}

{% trans "AK wishes with slots" %}

{% for ak in ak_wishes_with_slots %} {{ ak }} ({{ ak.akslot__count }})
{% empty %} -
{% endfor %} {% trans "Delete slots for wishes" %}

{% trans "AKs without slots" %}

{% for ak in aks_without_slots %} {{ ak }}
{% empty %} -
{% endfor %}
{% trans "Event Status" %}
{% endblock %}