{% extends "default.html" %} {% block title %}Gallery {{ gallery.title }} | gigadata{% endblock %} {% block content %}
{{ gallery.title }}
{{ gallery.description }}
Users
{% if have_permission %} |
Edit
{% endif %}
{% 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 }}
Remove
{% endfor %}
{% endblock %}