{% extends 'AKSubmission/submission_base.html' %} {% load i18n %} {% load fontawesome_5 %} {% block title %}{% trans "AKs" %}: {{ event.name }} - {% trans "AK Submission" %}{% endblock %} {% block imports %} {% endblock %} {% block breadcrumbs %} {% include "AKSubmission/submission_breadcrumbs.html" %} {% endblock %} {% block content %}

{% trans "AKs" %}: {{ event.name }}

{% include "AKSubmission/messages.html" %} {% blocktrans %}On this page you can see a list of current AKs, change them and add new ones.{% endblocktrans %} {% if event.active %}
{% csrf_token %} {% trans "New AK Wish" %}    |           
{% else %}
{% trans "This event is not active. You cannot add or change AKs" %}
{% endif %}

{% trans "Current AKs" %}

{% for category, AKs in categories %}

{{ category.name }}: {{ category.description }}

{% include "AKSubmission/ak_list_table.html" %}
{% endfor %}
{% endblock %}