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

Patron Categories

Used as a second axis for loan policies (alongside media type) and for school-year flows.

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %} {% if categories %} {% for c in categories %} {% endfor %}
CodeDisplay nameDefaultPatronsPolicies
{{ c.code }}
{% if c.is_default %}✓{% endif %} {{ counts.get(c.id, 0) }} {{ policy_counts.get(c.id, 0) }} {% if not c.is_default and counts.get(c.id, 0) == 0 and policy_counts.get(c.id, 0) == 0 %}
{% endif %}
{% else %}

No patron categories defined.

{% endif %}

Add category

{% endblock %}