{% extends "base.html" %} {% block title %}{{ household.name }} — Household — {{ library_name() }}{% endblock %} {% block content %} {% if error %}
{{ error }}
{% endif %}

{{ household.name }}

Members

{% if member_summaries %} {% for m in member_summaries %} {% endfor %}
NameCard #LoansHolds
{{ m.patron.full_name }}{% if not m.patron.is_active %} (inactive){% endif %} {{ m.patron.library_card_number }} {{ m.loan_count }} {{ m.hold_count }}
{% else %}

No members yet.

{% endif %}
Add a patron to this household

{% endblock %}