{% extends "core/base.jinja" %} {%- block additional_css -%} {%- endblock -%} {% block title %} {% trans %}SAS{% endtrans %} {% endblock %} {% block description -%} {% trans %}See all the photos taken during events organised by the AE.{% endtrans %} {%- endblock %} {% set is_sas_admin = user.is_root or user.is_in_group(pk=settings.SITH_GROUP_SAS_ADMIN_ID) %} {% from "sas/macros.jinja" import display_album %} {% block content %}

{% trans %}SAS{% endtrans %}

{% if not user.is_authenticated %}

{% trans %}You must be logged in to see the SAS.{% endtrans %}

{% else %}

{% trans %}Latest albums{% endtrans %}

{% for a in latest %} {{ display_album(a, edit_mode=False) }} {% endfor %}

{% if is_sas_admin %}
{% csrf_token %} {% if clipboard %}
{% trans %}Clipboard: {% endtrans %}
    {% for f in clipboard %}
  • {{ f.get_full_path() }}
  • {% endfor %}
{% endif %} {% else %}

{% trans %}All categories{% endtrans %}

{% endif %}
{% for a in categories %} {{ display_album(a, edit_mode=False) }} {% endfor %}
{% if album_create_fragment %}

{{ album_create_fragment }} {% endif %} {% endif %}
{% endblock %}