{% extends "egonomy_base.html" %} {% load static %} {% load absstatic %} {% load i18n %} {% load thumbnail %} {% block title %}{% trans "Annotate a picture" %}{% endblock %} {% block css_page %} {% endblock %} {% block content %}

{{ img.metadata.titre|default:_("No title") }}

{% with img.info.image_file as image %} {% if image|is_portrait %} {% thumbnail image "x600" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% else %} {% thumbnail image "600" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% endif %} {% endwith %} {% if fragment_list %} {% for fragment in fragment_list %} {% endfor %} {% endif %}
{% if search %} {% if index_search > 0 %}
{% endif %} {% if index_search|add:1 < nb_results %}
{% endif %} {% endif %}
{% trans "Description" %} : {{ img.metadata.description|default:"" }}
{% trans "Author" %} : {{ img.metadata.auteur|default:"" }}
{% trans "Period" %} : {{ img.metadata.periode|default:"" }}
{% trans "Production site" %} : {{ img.metadata.site|default:"" }}
{% trans "Localization" %} : {{ img.metadata.localisation|default:"" }}

{% trans "Keywords" %} :

{% trans "Fragments from this picture" %} :

{% if fragment_list %} {% else %}

{% trans "No fragment" %}

{% endif %}

{% trans "Collections including this picture" %} :

{% if related_collections %} {% else %}

{% trans "No collection" %}

{% endif %}
{% endblock %} {% block js_page %} {% endblock %}