{% extends "base.html" %} {% load l10n %} {% load i18n %} {% load dateconv %} {% load lastpart %} {% block content %}
{% include "messages.html" %} {% if public %}
{% trans 'Public URL:' %} {{ base_url }}{% url "public_objectview" account=account container=container %}
{% endif %} {% if folders or objects %} {% for folder in folders %} {% endfor %} {% for key in objects %} {% endfor %} {% else %} {% endif %}
{% trans 'Name' %} {% trans 'Created' %} {% trans 'Size' %}
{{folder.0|lastpart}}
{{key.name|lastpart}} {{key.last_modified|dateconv|date:"SHORT_DATETIME_FORMAT"}} {{key.bytes|filesizeformat}}
{% trans 'There are no objects in this container yet. Upload new objects by clicking the red button.' %}
{% endblock %} {% block jsadd %} {% endblock %}