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