{% extends "base.html" %} {% block title %}分类管理{% endblock %} {% block content %}
添加主分类
添加子分类
已存在的分类
{% for main_id, cat in categories.items() %}
{{ cat.name }}(ID: {{ main_id }}) {{ cat.color }} {% if cat.get('private', False) %} 私有 {% endif %}
    {% for sub_id, subData in cat.sub.items() %}
  • {{ subData.name }}(ID: {{ sub_id }}) {{ subData.color }} {% if cat.get('sub_private', {}).get(sub_id, False) %} 私有 {% endif %}
  • {% endfor %}
{% endfor %}
{% endblock %}