{% extends 'inventory/base.html' %} {% load static %} {% block title %}删除分类 - {{ block.super }}{% endblock %} {% block content %}
确认删除分类
分类信息
分类名称
{{ category.name }}
{% if category.description %}
分类描述
{{ category.description }}
{% endif %}
是否启用
{% if category.is_active %} 启用 {% else %} 禁用 {% endif %}
创建时间
{{ category.created_at|date:"Y-m-d H:i" }}
{% endblock %}