{{ img.metadata.titre|default:_("No title") }}
{% trans "Author" %} : {{ img.metadata.auteur|default:_("Not documented") }}
{% load static %}
{% load i18n %}
{% load thumbnail %}
{# we suppose here that "img" has been defined #}
{% trans "Author" %} : {{ img.metadata.auteur|default:_("Not documented") }}
{% with img.info.image_file as image %}
{% if image %}
{% if image|is_portrait %}
{% thumbnail image "x225" format="PNG" crop="center" as im %}
{% empty %}
{% endthumbnail %}
{% else %}
{% thumbnail image "225" format="PNG" crop="center" as im %}
{% empty %}
{% endthumbnail %}
{% endif %}
{% else %}
{% endif %}
{% endwith %}
{{ img.metadata.titre|default:_("No title") }}