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

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

{% with img.info.image_file as image %} {% if image|ratio > 0.8 %} {% thumbnail image "476" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% else %} {% thumbnail image "x600" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% endif %} {% endwith %}

{% trans "Fragments from this picture" %}

{% endblock %}