{% extends "gallery/gallery_base.html" %} {% load static %} {% block title %} {{ gallery_title }} {% endblock %} {% block header %} {% include "gallery/partials/justify_images.html" %} {% endblock %} {% block bar_title %}
{{ gallery_title }}
{% endblock %} {% block content %} {% include "gallery/partials/image_upload_form.html" %}
{% for image in image_list %} {% include "gallery/partials/thumbnail.html" %} {% endfor %} {% if not image_list and user.is_authenticated %}
Drag images into this box to upload to the image feed
{% endif %}
{% endblock %}