{% extends "admin/change_list.html" %} {% load i18n static admin_list s3files_extras %} {% block extrastyle %} {{ block.super }} {% endblock extrastyle %} {% block breadcrumbs %} {% endblock %} {% block object-tools %}

{% trans "Upload" %}

{% csrf_token %}
{% endblock object-tools %} {% block search %}
{% endblock search %} {% block result_list %}
{% if show_thumbnails %} {% endif %} {% for item in items %} {% if show_thumbnails %} {% endif %} {% endfor %}
{% trans 'Type' %}
{% trans 'Thumbanils' %}
{% trans 'Name' %}
{% trans 'Size' %}
{% trans 'Date' %}
{% if item.type == 'directory' %} {% trans "Folder" %} {% else %} {{ item.type|title }} {% endif %} {% if item.type == 'image' %} View Image {% endif %} {% if item.type == "directory" %} {{ item.name }}/ {% else %} {{ item.name }} {% endif %} {% if item.type != 'directory' %} {{ item.size|filesizeformat }} {% endif %} {% if item.type != 'directory' %} {{ item.last_modified|date:"M d, Y" }} {% endif %} {% if item.type != 'directory' %} {% trans "Download" %} {% endif %} {% if item.type != 'directory' %} {% trans "Delete" %} {% endif %}
{% endblock %} {% block filters %}{% endblock %} {% block pagination %}

{% if pagination_required %} {% for i in page_range %} {% s3files_paginator_number paginator page_num i current_path %} {% endfor %} {% endif %} {{ result_count }} {% if result_count == 1 %}item{% else %}items{% endif %} show {{ per_page }} per page {{ page_num }}

{% endblock %} {% block extrahead %} {{ block.super }} {% endblock extrahead %}