{% extends 'dashboard/base.html' %} {% block title %}Categories{% endblock %} {% block page_title %}Categories{% endblock %} {% block content %}
{% for cat in categories %} {% empty %} {% endfor %}
Category Slug Products Order Status Actions
{% if cat.image %}
{{ cat.name }}
{% else %}
{% endif %}
{{ cat.name }}
{% if cat.description %}
{{ cat.description|truncatechars:40 }}
{% endif %}
{{ cat.slug }} {{ cat.product_count }} {{ cat.order }} {% if cat.is_active %}Active{% else %}Hidden{% endif %}
{% csrf_token %}
No categories yet. Add one.
{% endblock %}