{% extends 'base.html' %} {% block head %} {{ super() }} {% endblock head %} {% block body %}
Options

{% if current_user.has_roles(['Admin']) %} {% else %}
{% endif %}
{% for image in data %}
Image #{{ image.index }}(source)
{% if showtags %}
Show Tags
{% for tag in image.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% endblock body %}