{% 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 %}
{% if item.metadatas.designation %}

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

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

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

{% 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 photographique: {{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 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 %} {% for image in item.images.all %}
{% include "partials/image_stats_panel.html" with image=image label="Statistiques sur cette image:" %}
{% endfor %} Retour à la liste d'objets
{% for image in item.images.all %}
{% include "partials/image_annotations_list.html" with annotation_list=image.annotations.all header="Annotation de l'image" %}
{% endfor %}
{% endblock %} {% block footer_js %} {% endblock %}