{% comment %} ############################################################################### # Browser Content Snippet ############################################################################### {% endcomment %} {% load i18n %} {% load cloud_browser_extras %} {% block cloud_browser_content %}

{% trans 'Containers' %}

{% trans 'Objects' %}

{% if objects %} {% for obj in objects %} {% if obj.is_subdir %} {% else %} {% endif %} {% if obj.is_file %} {% else %} {% endif %} {% endfor %}
  {% trans 'Name' %} {% trans 'Content Type' %} {% trans 'Encoding' %} {% trans 'Size (Bytes)' %} {% trans 'Date' %}
{{ obj.basename }}{{ obj.basename }} {% if obj.smart_content_type %} {{ obj.smart_content_type }} {% else %}--{% endif %} {% if obj.smart_content_encoding %} {{ obj.smart_content_encoding }} {% else %}--{% endif %} {% if obj.is_file or obj.size > 0 %} {{ obj.size|filesizeformat }} {% else %}--{% endif %} {% if obj.last_modified %} {{ obj.last_modified|date:'DATETIME_FORMAT' }} {% else %}--{% endif %}
{% if marker_part %}
{% csrf_token %} {% trans 'Next' %} {% trans 'after' %} »
{% else %}   {% endif %}
{% else %} {% if container %}
{% blocktrans %}No objects found in “{{ path }}.”{% endblocktrans %}
{% else %}
{% trans 'No container selected. Please click on a container to list object contents.' %}
{% endif %} {% endif %}
{% endblock %}