{% 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 Paris-Saclay 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 %}

{% blocktrans trimmed %} If you want a photo to be deleted, please let us know: Abuse request {% 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 %} Because we value your privacy, we do not sell the data on this site, unlike many free online platforms. The dedicated server running this website is kindly hosted by the Crans at the ENS Paris-Saclay basement. It is not managed by the Crans. Current active administrators are: {% endblocktrans %} {% for user in superusers %} {{ user.username }}{% endfor %}. {% trans "They should be contacted at" %} photos@crans.org.

{% endblock %}