{% extends "base.html" %} {% block title %}Closed Dates — {{ library_name() }}{% endblock %} {% block content %}

Closed Dates

Holidays, breaks, and one-off closures. Due dates that land on a closed date are rolled to the next open day. Overdue fines do not accrue on closed days. Also see Library Hours for the weekly schedule.

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %} {% if closed_dates %} {% for cd in closed_dates %} {% endfor %}
Start dateEnd dateLabelAnnual
{{ cd.start_date.isoformat() }} {{ cd.end_date.isoformat() }} {{ cd.label or '—' }} {% if cd.recurs_annually %}✓{% endif %}
{% else %}

No closed dates defined. Due dates and fines use the weekly hours schedule only.

{% endif %}

Add closed date

{% endblock %}