{% extends "base.html" %} {% load static %} {% block title %}Categories{% endblock %} {% block header_title %}Categories{% endblock %} {% block content %}
Category List
{% if categories %}
{% if user.role == 'admin' %} {% endif %} {% for category in categories %} {% if user.role == 'admin' %} {% endif %} {% endfor %}
Name DescriptionBranchActions
{{ category.name }} {% if category.description %} {{ category.description|truncatechars:50 }} {% else %} No description {% endif %} {{ category.branch.name }}
{% else %}

No categories found. {% if search_query %}Try a different search.{% else %}Add your first category!{% endif %}

Add Category
{% endif %}
{% endblock %}