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

Item labels

{% if error %}

{{ error }}

{% endif %} {% include "labels/_symbology_banner.html" %}
{# ── Step 1: What kind of label? ─────────────────────────────────── #}
What kind of label? {% for k in item_kind_order %} {% endfor %}
{# ── Step 2: Sheet template (per-kind) ──────────────────────────── #}

Sheet template

{% for k in item_kind_order %}
{% endfor %}
{# ── Step 3: Fields shown (per-kind) ─────────────────────────────── #}

Fields shown on each label

{% for k in item_kind_order %}
{% for f in item_kinds[k].fields %} {% endfor %} {% if not item_kinds[k].fields %}

No optional fields for this label kind.

{% endif %}
{% endfor %}
{# ── Step 4: Items to print ──────────────────────────────────────── #}

Items to print

{% if branches|length > 1 %} {% endif %} {% if item_count is not none %}

{{ item_count }} item{{ "s" if item_count != 1 else "" }} match current filters.

{% endif %}
{# ── Step 5: Print options ───────────────────────────────────────── #}

Print options

{% endblock %} {% block scripts %} {% endblock %}