{% extends 'AKSubmission/submission_base.html' %}
{% load i18n %}
{% load fontawesome_5 %}
{% load tz %}
{% 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" %}
{% if ak.interest_counter >= 0 %}
{% trans 'Interest' %}:
{{ ak.interest_counter }}
{% if ak.event.active %}
{% fa5_icon 'thumbs-up' 'fas' %}
{% endif %}
{% endif %}
{% if ak.link != "" %}
{% fa5_icon 'external-link-alt' 'fas' %}
{% endif %}
{% if ak.protocol_link != "" %}
{% fa5_icon 'file-alt' 'far' %}
{% endif %}
{% fa5_icon 'clock' 'fas' %}
{% if ak.event.active %}
{% fa5_icon 'pencil-alt' 'fas' %}
{% endif %}
{% trans "Who?" %} |
{% include "AKSubmission/owners_list.html" with owners=ak.owners %}
|
{% trans 'Category' %} |
{% category_linked_badge ak.category ak.event.slug %}
|
{% if ak.track %}
{% trans 'Track' %} |
{{ ak.track }} |
{% endif %}
{% trans "Present this AK" %} |
{{ ak.present | bool_symbol }} |
{% trans "Tags" %} |
{% tag_list ak.tags.all ak.event.slug %}
|
{% trans "Reso?" %} |
{{ ak.reso | bool_symbol }}
|
{% if ak.requirements.count > 0 %}
{% trans "Requirements" %} |
{% for requirement in ak.requirements.all %}
{% if forloop.counter0 > 0 %}
,
{% endif %}
{{ requirement }}
{% endfor %}
|
{% endif %}
{% if ak.conflicts.count > 0 %}
{% trans "Conflicting AKs" %} |
{% include "AKSubmission/ak_linked_list_inline.html" with aks=ak.conflicts slug=ak.event.slug %}
|
{% endif %}
{% if ak.prerequisites.count > 0 %}
{% trans "Prerequisite AKs" %} |
{% include "AKSubmission/ak_linked_list_inline.html" with aks=ak.prerequisites slug=ak.event.slug %}
|
{% endif %}
{% if ak.notes %}
{% trans "Notes" %} |
{{ ak.notes }} |
{% endif %}