{% extends base %} {% block body_left %} {% init show_note_path = True %} {% init note_group_list = [] %} {% include common/script/load_vue.html %} {% include note/component/script/group_select_script.html %} {% include note/component/script/tag_script.html %}
批量操作
{% if parent_id != "0" %} {% include common/button/back_button.html %} {% else %} {% include common/button/back_button.html %} {% end %}
{% if show_note_path %}
{% include note/component/note_path.html %}
{% end %} {% include note/component/script/tag_manage_script.html %}
{% if len(note_group_list) == 0 %} {% include common/text/empty_text.html %} {% end %} {% for group_info in note_group_list %}
{{group_info.label}}
{% for item in group_info.children %}
{% if item.is_pinned %} 置顶 {% end %} {{item.name}} 重命名
标签 {% for tag in item.tag_info_list %} {{tag.tag_name}} {% end %}
{% end %} {% end %}
{% include note/component/script/rename_script.html %} {% end %} {% block body_right %} {% include common/sidebar/app_index.html %} {% end %}