{% extends "photologue/root.html" %} {% 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.extended.date_start %}

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

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

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

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

{{ gallery.description|safe }}

{% endif %}
{% for photo in gallery.public %} {{ photo.title }}{% if photo.date_taken %} - {{ photo.date_taken|date }} {{ photo.date_taken|time }}{% endif %} - {{ photo.extented.owner.get_full_name }} {% endfor %}
{% endblock %}