{% extends "base.html" %} {% block title %}Categories{% endblock %} {% block page_title %}Categories{% endblock %} {% block page_subtitle %}Service categories for pricing and orders{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
{% if can_manage %}
Add Category
{% endif %}
{% if page_obj.object_list %}
{% for category in page_obj %} {% endfor %}
NameDescriptionItemsActiveCreatedActions
{{ category.name }} {{ category.description|truncatechars:60|default:"—" }} {{ category.linked_items }} {% if category.active %}Yes{% else %}No{% endif %} {{ category.created_at|date:"d M Y" }} {% if can_manage %} Edit {% if category.active %} Deactivate {% endif %} {% else %}—{% endif %}
{% else %} {% include "partials/empty_state.html" with title="No categories found" action_url="/categories/create/" action_label="Add Category" %} {% endif %}
{% include "partials/pagination.html" %} {% endblock %}