{% extends 'explorer/base.html' %} {% block title %} Explorer {% endblock title %} {% block content %}

Volumes

{% for vol in volumes %} {{ vol.name }} {% endfor %}

Summary:

Directories: {{ file_count.dir }}

Files: {{ file_count.file }}

{% for data in page_data %} {% if data.valid %} {% else %} {% endif %} {% endfor %}
Name Size Actions Creation Date
{% if data.type == "File" %} insert_drive_file {{ data.name }} {% elif data.type == "Directory" %} folder {{ data.name }} {% endif %} {{ data.size|filesizeformat }} {% for action in actions %} {% if action == "delete" %} delete {% elif action == "download" %} download {% else %} error {% endif %}   {% endfor %} {{ data.creation_time }}{{ data.name }}     {{ data.creation_time }}
{% if paginator_required %}
    {% if paginator_data.previous_page_number %}
  • Previous
  • {% else %}
  • Previous
  • {% endif %} {% for page in paginator_data.middle_pages %}
  • {{page.number}}
  • {% endfor %} {% if paginator_data.next_page_number %}
  • Next
  • {% else %}
  • Next
  • {% endif %}
{% endif %}
{% endblock content %}