{% 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 %} {% if not request.user.is_authenticated %}{% endif %} {% 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 }} {% trans "censored photos" %}

{% endif %}
{% if request.user.is_staff %}
{% csrf_token %} {% if gallery.is_public %} {% else %} {% endif %}
{% endif %} {% if gallery.is_public %}

{% trans "Public, anyone with the link can view this gallery." %}

{% else %}

{% trans "Private, login required to view." %}

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

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

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

{{ gallery.description|linebreaksbr }}

{% endif %}
{% for item in media_items %} {{ item.title }}{% if not item.is_video and item.date_taken %} - {{ item.date_taken|date }} {{ item.date_taken|time }}{% endif %} - {{ item.owner.first_name|default:item.owner.username }}{% if not item.is_video and item.license %} - {{ item.license }}{% endif %}{% if not item.is_public %} - !PRIVATE!{% endif %} {% endfor %}
{% endblock %}