{% extends 'iconolab_base.html' %} {% load staticfiles %} {% load thumbnail %} {% load iconolab_tags %} {% block content %}
{% for image in images|dictsort:"obj.pk" %}
{% thumbnail image.obj.media "500x500" crop=False as im %} {% endthumbnail %}
{% endfor %}
{% include "iconolab/metadatas/detail_item_metadatas.html" %} {% if images|length > 1 %}

Autres images pour cet objet:

{% for image in images %} {% thumbnail image.obj.media "150x150" crop=False as im_small %} {% endthumbnail %} {% endfor %}

{% endif %} {% for image in images %}
{% include "partials/image_stats_panel.html" with image=image.obj label="Statistiques sur cette image :" %}
{% endfor %} Retour à la liste d'objets
{% for image in images %}
{% include "partials/image_annotations_list.html" with annotation_list=image.annotations header="Annotation de l'image" %} {% if image.annotations %} {% if image.annotations.has_previous or image.annotations.has_next %} {% endif %} {% endif %}
{% endfor %}
{% endblock %} {% block footer_js %} {% endblock %}