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

Library Hours

Set open/close times for each weekday. Closed days are skipped when computing due dates and overdue fines. Also see Closed Dates for holidays and one-off closures.

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %} {% for h in hours %} {% endfor %}
DayOpenOpen timeClose time
{{ weekday_names[h.weekday] }} {% if h.is_open %}Open{% else %}Closed{% endif %} {{ h.open_time.strftime('%H:%M') if h.open_time else '—' }} {{ h.close_time.strftime('%H:%M') if h.close_time else '—' }}

Timezone used: {{ library_timezone }} — change in General Settings.

{% endblock %}