{% load i18n %}

{% trans "Images" %}

{% with theme.images.all as images %}
{% csrf_token %} {% for item in images %} {% empty %} {% endfor %}
  {% trans "Name" %} {% trans "Modified" %} {% trans "Size" %} {% trans "Type" %} {% trans "Dimensions" %}
{{ item }} {{ item.size|filesizeformat }} {{ item.type }} {{ item.width }}×{{ item.height }}
{% trans "This theme has no images." %}
{% if images %} {% endif %}
{% endwith %}