{% extends "photologue/root.html" %} {% load i18n %} {% block title %}{% blocktrans with show_year=year|date:"Y" %}Photos for {{ show_year }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with show_year=year|date:"Y" %}Photos for {{ show_year }}{% endblocktrans %}

{% if object_list %}
{% for photo in object_list %} {{ photo.title }} {% endfor %}
{% else %}

{% trans "No photos were found" %}.

{% endif %}
{% trans "View all photos" %}
{% endblock %}