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

{% trans "All galleries" %}

{% if object_list %} {% for gallery in object_list %}

{{ gallery.title }}

{% trans "Published" %} {{ gallery.date_added }}

{% if gallery.description %}

{{ gallery.description|safe }}

{% endif %} {% for photo in gallery.sample %} {{ photo.title }} {% endfor %}
{% endfor %} {% else %}
{% trans "No galleries were found" %}.
{% endif %} {% include "photologue/includes/paginator.html" %} {% endblock %}