{% extends "assetapp/base.html" %} {% block title %}{% if action == 'create' %}新增分类{% else %}编辑分类{% endif %}{% endblock %} {% block content %}
返回

{% if action == 'create' %}新增分类{% else %}编辑分类 - {{ category.name }}{% endif %}

{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.description }}
取消
{% endblock %}