{% load custom_tags_and_filters %}
{% for category in categories %} {% if category not in unqualified_categories or customer.is_staff or "tool"|customization:"kiosk_only_show_qualified_tools" != "enabled" %}
{% with selected_category_path=selected_category|concat:'/' %} {% if selected_category %} {{ category|cut:selected_category_path }} {% else %} {{ category }} {% endif %} {% endwith %}
{% endif %} {% endfor %} {% for tool in tools %} {% if tool not in unqualified_tools or customer.is_staff or "tool"|customization:"kiosk_only_show_qualified_tools" != "enabled" %}
{{ tool }} {% include 'snippets/item_status_icons.html' with item=tool %}
{% endif %} {% endfor %}