{% extends "base.html" %} {% block copyright %} {% endblock %} {% block title %}Listing of {{ directory_info.name() }}{% endblock %} {% block extra_head %} {% if settings.DEBUG %} {% else %} {% endif %} {% endblock %} {% set disabled_attrs='class="disabled" title="You do not have permission to use this function"'|safe %} {% set vdisabled_attrs='class="disabled" title="You do not have permission to view this folder"'|safe %} {% block body %}

Listing of {{ directory_info.name() }}

Total folder size: {{ directory_info.size()|filesizeformat }}
{% if err_msg %}
{{ err_msg|newlines }}
{% else %} {% if db_info and db_info.status == STATUS_ACTIVE %}
 Folder actions
{% endif %}
Change view   List view Grid view
{% if directory_info.exists() %} {% if view_type == 'list' %} {% include "inc_list_list_mode.html" %} {% else %} {% include "inc_list_grid_mode.html" %} {% endif %} {% if directory_info.count() > 0 %}
{% include "inc_timezone.html" %} {% endif %} {% else %}
 
Sorry, this folder does not exist.
(back to root folder)
{% endif %} {% include "inc_preview_popup.html" %} {% if db_info %} {% set parent_path = db_parent_info.path if db_parent_info else '' %} {% endif %} {% endif %} {% endblock %}