{% load dateparse %} Public holidays for {% if province %}{{ province }}, {% endif %} {{ country }}

Public holidays for {% if province %}{{ province }}, {% endif %} {{ country.name }} in {{ start|date:'Y' }}{% if start|date:'Y' != finish|date:'Y' %}-{{ finish|date:"Y"}}{% endif %}.

Note: future holidays beyond the current year may not be correct.
{% for date,holiday_list in holidays.items %}
{% for item in holiday_list %}
{{ item.name }} {% if not province and item.provinces %} ({% for p in item.provinces %}{{ p }}{% if not forloop.last %}, {% endif %}{% endfor %}) {% endif %}
{% endfor %} {% endfor %}