{% extends "secretsanta/base.html" %} {% load i18n %} {% load humanize %} {% block details %}

{% translate "Secret Santa Applications" %}

{% for application in applications %} {% endfor %}
{% translate "Application" %} {% translate "Manage" %}
{{ application.user.profile.main_character }} put some buttons here
{% if year.open %} {% trans "Generate Pairs" %} {% else %} {% trans "notify_santas" %} {% trans "notify_outstanding_santees" %} {% endif %} {% endblock details %} {% block extra_javascript %} {% include "bundles/datatables-js.html" %} {% include "bundles/jquery-ui-js.html" %} {% include "bundles/moment-js.html" %} {% include "bundles/jquery-ui-css.html" %} {% endblock extra_javascript %} {% block extra_css %} {% include "bundles/datatables-css.html" %} {% include "bundles/jquery-ui-css.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 %}