{% extends "base.html" %} {% block title %}Category Details{% endblock %} {% block content %}

Category Details

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 %}{% endif %}
Created{{ category.created_at }}
Deleted At{{ category.deleted_at }}
Back Edit
{% endblock %}