{% extends "base.html" %} {% load static %} {% block title %}Category Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{ category.id }} {{ category.name }} {% if category.parent %}{{ category.parent.name|default:category.parent.id }}{% endif %} {{ category.description|striptags|truncatechars:80 }}
{% for category in categories %} {% endfor %}
ID Name Parent Description Image Status In Trash Created Actions
{{ category.id }} {{ category.name }} {% if category.parent %}{{ category.parent.name }}{% endif %} {{ category.description|striptags|truncatechars:80 }} {% if category.image %} Category {{ category.id }} {% endif %} {% if category.status == 'active' %} Active {% else %} Inactive {% endif %} {% if category.trash %} Yes {% else %} No {% endif %} {{ category.created_at|date:"M d, Y H:i" }}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}