{% extends 'AKSubmission/submission_base.html' %} {% load i18n %} {% load fontawesome_5 %} {% load tags_AKSubmission %} {% load tags_AKModel %} {% block title %}{% trans "AKs" %}: {{ ak.event.name }} - {% trans "AK" %}: {{ ak.name }}{% endblock %} {% block breadcrumbs %} {% include "AKSubmission/submission_breadcrumbs.html" %} {% endblock %} {% if 'AKPlan'|check_app_installed %} {% block imports %} {% include "AKPlan/plan_akslot.html" %} {% endblock %} {% endif %} {% block content %} {% include "AKSubmission/messages.html" %}
{% if ak.interest_counter >= 0 %} {% trans 'Interest' %}: {{ ak.interest_counter }} {% fa5_icon 'thumbs-up' 'fas' %} {% endif %} {% if ak.link != "" %} {% fa5_icon 'external-link-alt' 'fas' %} {% endif %} {% if ak.event.active %} {% fa5_icon 'pencil-alt' 'fas' %} {% endif %}

{% if ak.wish %}{% trans "AK Wish" %}: {% endif %}{{ ak.name }}

{% if ak.requirements.count > 0 %} {% endif %} {% if ak.conflicts.count > 0 %} {% endif %} {% if ak.prerequisites.count > 0 %} {% endif %} {% if ak.notes %} {% endif %}
{% trans "Who?" %} {{ ak.owners_list }}
{% trans 'Category' %} {% category_linked_badge ak.category ak.event.slug %}
{% trans "Present this AK" %} {{ ak.present | bool_symbol }}
{% trans "Tags" %} {% tag_list ak.tags.all ak.event.slug %}
{% trans "Reso?" %} {{ ak.reso | bool_symbol }}
{% trans "Requirements" %} {% for requirement in ak.requirements.all %} {% if forloop.counter0 > 0 %} ,  {% endif %} {{ requirement }} {% endfor %}
{% trans "Conflicting AKs" %} {% include "AKSubmission/ak_linked_list_inline.html" with aks=ak.conflicts slug=ak.event.slug %}
{% trans "Prerequisite AKs" %} {% include "AKSubmission/ak_linked_list_inline.html" with aks=ak.prerequisites slug=ak.event.slug %}
{% trans "Notes" %} {{ ak.notes }}

{{ ak.description }}

{% if 'AKPlan'|check_app_installed %}
{% endif %} {% for slot in ak.akslot_set.all %} {% endfor %}
{% trans "When?" %} {% trans "Duration" %} {% trans "Room" %}
{{ slot.start_simplified }} {{ slot.duration }} {{ slot.room }} {% if not slot.start %} {% fa5_icon 'pencil-alt' 'fas' %} {% fa5_icon 'times' 'fas' %} {% endif %}
{% if ak.event.active %}
{% fa5_icon 'plus' 'fas' %} {% trans "Add another slot" %}
{% endif %} {% endblock %}