{% extends "secretsanta/base-bs5.html" %} {% load i18n %} {% load humanize %} {% block content %}

{% translate "Secret Santa Applications" %}

{% for application in applications %} {% endfor %}
{% translate "Application" %} {% translate "Affiliation" %} {% translate "Manage" %}
{{ application.user.profile.main_character }} {{ application.user.profile.main_character.corporation_name }} / {{ user.profile.main_character.alliance_name|default_if_none:"" }}
{% if year.open %} {% translate "Generate Pairs" %} {% endif %} {% endblock content %} {% block extra_javascript %} {% include "bundles/datatables-js-bs5.html" %} {% include "bundles/moment-js.html" %} {% endblock extra_javascript %} {% block extra_css %} {% include "bundles/datatables-css-bs5.html" %} {% endblock extra_css %} {% block extra_script %} $(document).ready( function () { $('#table-secret-santa-applications').DataTable({ lengthMenu: [ [10, 25, 50, 100, -1], [10, 25, 50, 100, 'All'], ], "stateSave": true, "stateDuration": 0 }); } ); {% endblock extra_script %}