{% extends '../global.html' %} {% load i18n %} {% load responsive_images %} {% block content %} {% if gallery.title %}

{{gallery.title}}

{% endif %} {% translate 'Upload image to this gallery' %}
  • {% for image in gallery.images.all %} {% endfor %}
  • {% if gallery.private and gallery.visitors.all|length > 0 and gallery.created_by == visitor %}

    {% translate 'You have gained access to the following people' %}

    {% for visitor in gallery.visitors.all %} {{visitor.name}} {% translate 'Revoke access' %} {% endfor %}
    {% endif %}
    {% endblock content %}