{% 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 'Type' %}
|
{% if show_thumbnails %}
{% trans 'Thumbanils' %}
|
{% endif %}
{% trans 'Name' %}
|
{% trans 'Size' %}
|
{% trans 'Date' %}
|
||
---|---|---|---|---|---|---|
{% if item.type == 'directory' %} {% trans "Folder" %} {% else %} {{ item.type|title }} {% endif %} | {% if show_thumbnails %}
{% if item.type == '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 %} |
{% 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 %}