{% extends "base.html" %} {% load i18n template_tools %} {% block subtitle %} {% blocktrans with training=session.training date=session.date|date:"j F Y" %}Photostories of "{{ training }}" - {{ date }}{% endblocktrans %} {% endblock subtitle %} {% block actions %} {% trans 'Back to session list' %} {% endblock actions %} {% block main %}
{% for photostory in object_list %}
{% trans 'Photostory' %} "{{ photostory }}"
{% with strip_number=strips_count|get_value:photostory photo_number=photos_count|get_value:photostory %}
{{ strip_number }}
{% trans 'strip' %}{{ strip_number|pluralize }}
{{ photo_number }}
{% trans 'photo' %}{{ photo_number|pluralize }}

{% endwith %}
{% empty %}
{% trans 'No photostory yet.' %}
{% endfor %}
{% endblock main %}