{% extends "photologue/root.html" %} {% load i18n %} {% block title %}{% trans "All photos" %}{% endblock %} {% block content %}

{% trans "All photos" %}

{% if object_list %}
{% for photo in object_list %} {{ photo.title }} {% endfor %}
{% else %}
{% trans "No photos were found" %}.
{% endif %} {% include "photologue/includes/paginator.html" %} {% endblock %}