{% load i18n %} {% load lfc_tags %} {% ifhasperm edit %} {% if obj.images.all %}
{% for image in obj.images.all %} {% endfor %}
{% trans 'Image' %} {% trans 'Title' %} {% trans 'Position' %} {% trans 'Creation date' %}
{{ image.title }} {{ image.creation_date|date:"Y-m-d H:i:s" }}
{% trans "Processing ..." %}
{% else %} {% trans 'There are no images' %} {% endif %}

{% trans 'Add images' %}

{# {% trans 'Upload Queue' %} #}
{% else %} {% if obj.images.all %} {% for image in obj.images.all %} {% endfor %}
{% trans 'Image' %} {% trans 'Title' %}
{{ image.title }} {{ image.title }}
{% else %} {% trans 'There are no images' %} {% endif %} {% endifhasperm %}