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

{{gallery.title}}

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

    You have gained access to the following people

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