{% extends 'iconolab_base.html' %} {% load staticfiles %} {% load thumbnail %} {% load iconolab_tags %} {% block content %}
{% for image in item.images.all|dictsort:"pk" %}
{% thumbnail image.media "500x500" crop=False as im %} {% endthumbnail %}

Annoter cette image

{% endfor %}

{{item.metadatas.title}}

Description:

{{item.metadatas.description}}


{% if item.images.all.count > 1 %}

Autres images pour cet objet:

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

{% endif %} Retour à la liste d'objets
{% for image in item.images.all %}
{% include "partials/image_annotations_list.html" with annotation_list=image.annotations.all image_guid=image.image_guid %}
{% endfor %}
{% endblock %} {% block footer_js %} {% endblock %}