{% extends "default.html" %} {% import "small-annotation-display.html" as annotation_display %} {% 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 %}
{{ annotation_display.annotation_display(picture.resource) }}
{{ picture.resource.title }}
by
{{ picture.resource.author.formatted_name }}
{% if have_permission %}
Remove
{% endif %}
{% endfor %}
{% endblock %}