{% extends "base.html" %} {% block title %}Library Hours — {{ library_name() }}{% endblock %} {% block content %}
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 %}{% endif %} {% if error %}{% endif %}| Day | Open | Open time | Close 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 %}