{% extends "base.html" %} {% block title %}Items{% endblock %} {% block page_title %}Items & Pricing{% endblock %} {% block page_subtitle %}Manage garment items and service prices{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
{{ form.q }}{{ form.category }}{{ form.service_type }}{{ form.active }} Clear
{% if can_manage %}
Add Item
{% endif %}
{% if page_obj.object_list %}
{% for item in page_obj %} {% endfor %}
ItemCategoryServicePrice RangeActiveCreatedActions
{{ item.item_name }} {{ item.category.name }} {{ item.get_service_type_display }} {{ item.price_range_display }} {% if item.active %}Yes{% else %}No{% endif %} {{ item.created_at|date:"d M Y" }} View {% if can_manage %} Edit {% if item.active %} Deactivate {% endif %} {% endif %}
{% else %} {% include "partials/empty_state.html" with title="No items found" action_url="/items/create/" action_label="Add Item" %} {% endif %}
{% include "partials/pagination.html" %} {% endblock %}