{% 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 "Home" %}{% endblock %} {% block content %}

{% trans "Welcome to the pictures server!" %}

{% blocktrans trimmed %} This website aims to collect the pictures and movies taken in the student life of ENS Rennes or involving its students. {% endblocktrans %}

{% url 'photologue:pl-gallery-archive' as gallery_archive_url %} {% blocktrans trimmed %} The pictures are visible in the galleries and are downloadable. However, the agreement of the photographer and the persons present on the photo is necessary before any republication on another platform. {% endblocktrans %}

{% if not perms.photologue.add_photo %}

{% blocktrans trimmed %} If you want to obtain the right to upload pictures, please let us know: Become a photograph {% endblocktrans %}

{% endif %}

{% trans "Last galleries" %}

{% for gallery in object_list %}
{% include "photologue/includes/gallery_sample.html" %}
{% endfor %}

{% trans "Behind the scene" %}

{% blocktrans trimmed %} The dedicated server running this website is kindly hosted by Sinfonie at the ENS Rennes.

{% endblock %}