{% extends base.html %} {% block body_left %} {% init show_note_path = True %} {% init note_tags = dict() %} {% include note/component/script/create_script.html %} {% include note/component/script/tag_script.html %} {% include note/component/script/note_template.html %}
笔记本管理
{% include common/button/back_button.html %}
{% if len(notes) == 0 %} {% include common/text/empty_text.html %} {% end %} {% for item in notes %}
{% if item.priority>0 %} 置顶 {% end %} {% if item.priority==0 %} 活跃 {% end %} {% if item.archived %} 归档 {% end %} {{item.name}} 重命名
标签 {% for tag in item.tag_info_list %} {{tag.name}} {% end %}
{% end %}
{% include note/component/script/rename_script.html %} {% end %} {% block body_right %} {% include note/component/sidebar/group_manage_sidebar.html %} {% end %}