{% extends "base.html" %} {% block title %}Category Details{% endblock %} {% block content %}
| ID | {{ category.id }} |
|---|---|
| Name | {{ category.name }} |
| Parent | {% if category.parent %}{{ category.parent.name|default:category.parent.id }}{% endif %} |
| Description | {{ category.description|safe }} |
| Status | {{ category.status }} |
| Trash | {{ category.trash }} |
| Image | {% if category.image %} |
| Created | {{ category.created_at }} |
| Deleted At | {{ category.deleted_at }} |