{% extends "default.html" %} {% block nav_title %}{{ gallery.title }}{% endblock %} {% block title %}Gallery {{ gallery.title }} | {{ site_name }}{% endblock %} {% block content %}
Users
{% if have_extended_permission %}
Edit
{% endif %} {% if have_extended_permission %}
Delete
Confirm deletion
{% endif %}
{{ gallery.title }}
owned by
{{ gallery.owner.formatted_name }}
{{ gallery.description }}
{% if have_permission %}
Add picture
Add from query
Query YAML
Add pictures
{% endif %}
Pictures
{% for picture in gallery.pictures %}
{% for region in picture.resource.regions %} {% if region.json.type == "bbox" %}
{% elif region.json.type == "polygon" %}
{% elif region.json.type == "polyline" %}
{% elif region.json.type == "point" %}
{% endif %} {% endfor %}
{{ picture.resource.title }}
{% if have_permission %}
Remove
{% endif %}
{% endfor %}
{% endblock %}