{% extends base %} {% block body_left %}
{{T("Tag List")}} {% include common/back.html %}
{% init system_tag_list = [] %}
系统标签
{% for tag_info in system_tag_list %} {{tag_info.name}} {{tag_info.amount}} {% end %}
自定义标签
{% if len(tag_list) == 0 %} {% include common/text/empty_text.html %} {% end %} {% for tag_info in tag_list %} {{tag_info.name}} {{tag_info.amount}} {% end %}
{% end %} {% block aside %} {% include note/component/mod_aside.html %} {% end %} {% block body_right %} {% include note/component/sidebar/group_list_sidebar.html %} {% end %}