{% 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 %}

Annoter cette image

{% endfor %}
{% if item.metadatas.designation %}

Désignation : {{item.metadatas.designation}}

{% endif %} {% if item.metadatas.authors %}

Auteur(s) : {{item.metadatas.designation}}

{% endif %} {% if item.metadatas.field %}

Domaine : {{item.metadatas.field}}

{% endif %} {% if item.metadatas.conservation_location %}

Conservé à : {{item.metadatas.conservation_location}}

{% endif %} {% if item.metadatas.datation %}

Datation : {{item.metadatas.datation}}

{% endif %} {% if item.metadatas.technics %}
Techniques : {{item.metadatas.technics}}
{% endif %} {% if item.metadatas.measurements %}
Mesures : {{item.metadatas.measurements}}
{% endif %} {% if item.metadatas.create_or_usage_location %}
Lieu de création/utilisation : {{item.metadatas.create_or_usage_location}}
{% endif %} {% if item.metadatas.discovery_context %}
Contexte de découverte : {{item.metadatas.discovery_context}}
{% endif %} {% if item.metadatas.photo_credits %}
Crédits photographiques : {{item.metadatas.photo_credits}}
{% endif %} {% if item.metadatas.inventory_number %}
Numéro d'inventaire : {{item.metadatas.inventory_number}}
{% endif %} {% if item.metadatas.joconde_ref %}
Cet objet dans Joconde
{% endif %}
{% 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 %}