{% extends base %} {% block head %} {% set-global search_action = '/fs_find' %} {% set-global search_placeholder = '搜索文件' %} {% end %} {% block search_form %} {% end %} {% block body_left %} {% init find_key = "" %} {% init error = "" %} {% init show_fs_path = True %} {% init search_category = "fs" %} {% init show_hidden_files = False %}
{% include fs/component/fs_title.html %}
{% if show_fs_path %} {% include mod_fs_path.html %} {% end %} {% include fs/component/options/fs_options.html %} {% include fs/component/script/file_op_script.html %}
{% for _item in filelist %} {# 隐藏文件 #} {% if _item.name == "" %} {% set print("overflow fileItem=%s" % _item) %} {% continue %} {% end %} {{_item.name}} {% if _item.show_opt_btn %}
{{_item.size}}  
{% end %}
{% end %}
{% if error != "" %}
{{error}}
{% end %} {% end %} {% block body_right %} {% include fs/component/fs_sidebar.html %} {% end %}