{% load i18n %} {% load static %} {% include 'filter_tags.html' %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% if holidays %}
{% trans "Select All Holidays" %}
{% trans "Unselect All Holidays" %}
{% trans "Holiday Name" %}
{% trans "Start Date" %}
{% trans "End Date" %}
{% trans "Recurring" %}
{% if perms.base.change_holiday or perms.base.delete_holiday %}
{% trans "Actions" %}
{% endif %}
{% for holiday in holidays %}
{{holiday.name}}
{{holiday.start_date}}
{{holiday.end_date}}
{% if holiday.recurring %} {% trans "Yes" %} {% else %} {% trans "No"%} {% endif %}
{% if perms.base.change_holiday or perms.base.delete_holiday %}
{% if perms.base.change_holiday %} {% endif %} {% if perms.base.delete_holiday %} {% endif %}
{% endif %}
{% endfor %}
{% trans "Page" %} {{ holidays.number }} {% trans "of" %} {{ holidays.paginator.num_pages }}.
{% else %}

{% trans "There are no holidays at the moments." %}

{% endif %}