{% extends "photologue/root.html" %} {% load i18n %} {% block title %}{% trans "Latest Photos" %}{% endblock %} {% block content %}
{% trans "Filter by year" %}
{% if latest %}
{% for photo in latest %} {{ photo.title }} {% endfor %}
{% else %}
{% trans "No photos were found" %}.
{% endif %}
{% endblock %}