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

Volumes

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

Summary

Directories {{ summary_data.directory }}
Files {{ summary_data.file }}
{% if action_data %}
{% csrf_token %} {% for action in action_data %} {% if forloop.counter0 == 0 %} {% else %} {% endif %} {% endfor %}
{% endif %} {% for data in page_data %} {% if data.valid %} {% else %} {% endif %} {% endfor %}
Name Size Creation Date
{% if data.type == "file" %} insert_drive_file {{ data.name }} {% elif data.type == "directory" %} folder {{ data.name }} {% endif %} {{ data.size|filesizeformat }} {{ data.creation_time }} {{ data.name }}   {{ data.creation_time }}
{% if pagination_data %}
    {% if pagination_data.previous_page %}
  • Previous
  • {% else %}
  • Previous
  • {% endif %} {% for page in pagination_data.middle_pages %}
  • {{page.number}}
  • {% endfor %} {% if pagination_data.next_page %}
  • Next
  • {% else %}
  • Next
  • {% endif %}
{% endif %}
{% endblock content %}