{% extends "base.html" %} {% block styles %} {% endblock %} {% block content %}

Manage Categories

Add New Category

All Categories ({{ categories|length }})

{% if categories %}
{% for category in categories %} {% endfor %}
ID Name Products Actions
{{ category.id }} {{ category.name }} {{ category.products|length }} {% if category.products|length == 0 %}
{% else %} {% endif %}
{% else %}
No categories found.
{% endif %}
{% endblock %}