{% extends "secretsanta/base.html" %} {% load i18n %} {% load humanize %} {% load secretsanta %} {% block details %}
{% for year in years %}
{% if year.open %}
{% else %}
{% endif %}
{{ year.year }}
{% trans "Members" %}: {{ year.members }}
{% trans "Santee" %}: {% get_users_santee year user %}

{% if year.open %} {% application_exists year user as application_exists_flag %} {% if application_exists_flag %} {% trans "Joined" %} {% else %} {% trans "Join" %} {% endif %} {% endif %} {% if year.participating %} {% trans "Received Gift" %} {% endif %} {% if perms.secretsanta.manage %} {% trans "Applications" %} {% trans "Administer" %} {% endif %}
{% endfor %}
{% endblock details %}