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

{{ fragment.title }}

{% with fragment.image.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 %}