{% 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" %}
| Item | Category | Service | Price Range | Active | Created | Actions |
|---|---|---|---|---|---|---|
| {{ 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 %} |