{% extends 'inventory/base.html' %} {% block title %}分类管理 - {{ block.super }}{% endblock %} {% block content %}

分类列表

管理所有商品分类信息

{% for category in categories %} {% empty %} {% endfor %}
分类名称 描述 创建时间 操作
{{ category.name }}
{{ category.description|truncatewords:10 }} {{ category.created_at|date:"Y-m-d H:i" }}

暂无分类数据

点击"添加分类"按钮创建分类
{% endblock %}