{% extends "base.html" %} {% load static %} {% block title %}Category Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| 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 %}
|
{% if category.status == 'active' %} Active {% else %} Inactive {% endif %} | {% if category.trash %} Yes {% else %} No {% endif %} | {{ category.created_at|date:"M d, Y H:i" }} |