{% extends "base.html" %} {% comment %} This file is part of photo21 Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n %} {% block title %}{% trans "Latest photo galleries" %}{% endblock %} {% block content %}

{% trans "Latest photo galleries" %}

{% if latest %}
{% for gallery in latest|slice:":32" %}
{% include "photologue/includes/gallery_sample.html" %}
{% endfor %}
{% else %}

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

{% endif %}
{% endblock %}