{% 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 static i18n %} {% block title %}{{ gallery.title }}{% endblock %} {% block extracss %} {% endblock %} {% block extrajs %} {% endblock %} {% block content %}

{{ gallery.title }} {% if request.user.is_staff and perms.photologue.change_gallery %} {% endif %}

{% if gallery.date_start %}

{{ gallery.date_start }}{% if gallery.date_end and gallery.date_end != gallery.date_start %} {% trans "to" %} {{ gallery.date_end }}{% endif %}

{% endif %} {% if request.user.is_staff and gallery.photo_private_count %}

{{ gallery.photo_private_count }} photos censurées

{% endif %} {% if gallery.tags.all %}

Tags : {% for tag in gallery.tags.all %} {{ tag }} {% endfor %}

{% endif %} {% if gallery.description %}

{{ gallery.description|safe }}

{% endif %}
{% for photo in photos %} {{ photo.title }}{% if photo.date_taken %} - {{ photo.date_taken|date }} {{ photo.date_taken|time }}{% endif %}{% if photo.owner.get_full_name %} - {{ photo.owner.get_full_name }}{% else %} - {{ photo.owner.username }}{% endif %}{% if photo.license %} - {{ photo.license }}{% endif %}{% if not photo.is_public %} - !PRIVATE!{% endif %} {% endfor %}
{% endblock %}