{% extends "base.html" %} {% block title %}Print QR Codes{% endblock %} {% block content %}

QR Codes

{% if selected_contract %}Contract: {{ selected_contract.name }} — {% endif %} {{ facilities|length }} facilit{{ 'y' if facilities|length == 1 else 'ies' }} {% if include_areas %}(with areas){% endif %}
Back
{# ── Filter bar (GET reload) ─────────────────────────────────────────────── #}
{# ── Selection toolbar + export form ─────────────────────────────────────── #}
0 selected
{% if facilities %}
{% for f in facilities %} {# Facility QR card #} {% if include_areas %} {% for a in areas_by_facility.get(f.id, []) %} {# Area QR card #} {% endfor %} {% endif %} {% endfor %}
{% else %}
No facilities match the selected filters.
{% endif %}

Tip: tick the codes you want, then Print Selected or Export Selected to PDF. With nothing ticked, Print Selected prints them all.

{% endblock %}