{% init file = None %}
{% init can_edit = False %}
标签
{% if len(file.tags) == 0 %}
(无)
{% end %}
{% for tag_info in file.tag_info_list %}
{{tag_info.name}}
{% end %}
{% if can_edit %}
{% end %}
{% if file != None %}
{% if file.priority == 1 %}
置顶
{% end %}
{% if file.type == "list" %}
清单
{% end %}
{% if file.type in ("csv", "table") %}
表格
{% end %}
{% if file.type == "gallery" %}
相册
{% end %}
{% if file.type == "html" %}
富文本
{% end %}
{% if file.type == "log" %}
日志
{% end %}
{% if file.type in ("md", "text", "plan") %}
文档
{% end %}
{% if file.is_public %}
公开
{% end %}
{% end %}
{% include note/component/script/tag_script.html %}