{% extends 'core/base.html' %} {% load static %} {% block title %}Categories - SwiftPOS{% endblock %} {% block topbar_title %} Inventory - Categories {% endblock %} {% block content %}
{% if messages %} {% for message in messages %}
{% if message.tags == 'success' %} {% elif message.tags == 'error' or message.tags == 'danger' %} {% elif message.tags == 'warning' %} {% else %} {% endif %}
{{ message }}
{% endfor %} {% endif %}
Categories
{{ categories|length }} category{{ categories|length|pluralize }}
{% if categories %} {% for category in categories %} {% endfor %} {% else %} {% endif %}
Name Products Actions
{{ category.name }} {{ category.product_count|default:category.products.count }} items
No categories created yet.
{% endblock %}