{% 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 %} {# Javascript code fetches CSRF token from HTML #} {% csrf_token %} {% endblock %} {% block content %}
{{ 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 %} {% endblock %}