{% extends "base.html" %} {% load static %} {% block title %}Categories - POS System{% endblock %} {% block page_pretitle %}
POS System
{% endblock %} {% block page_title %} Product Categories {% endblock %} {% block page_actions %} Back to Dashboard Add Category {% endblock %} {% block content %}

Search Categories

{% for category in categories %} {% empty %} {% endfor %}
Category Name Description Products Default Income Account Status Actions
{{ category.name|slice:":1"|upper }}
{{ category.name }}
{{ category.description|default:"—"|truncatewords:15 }}
{{ category.product_count }} product{{ category.product_count|pluralize }} {% if category.default_income_account %}
{{ category.default_income_account.name }}
{% else %} {% endif %}
{% if category.is_active %} Active {% else %} Inactive {% endif %}

No categories found

{% if request.GET.search %} Try adjusting your search or clear the filter. {% else %} Get started by creating your first product category. {% endif %}

{% if request.GET.search %} Clear Search {% endif %} Add Category
{% if categories %}
Total Categories
{{ categories|length }}
Active Categories
{{ active_categories }}
Total Products
{{ total_products }}
{% endif %}
{% endblock %}