{% 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 %}
{% for album in object_list %} {% with image=album.display_highlight %} {% if image %} {% include "gallery/partials/thumbnail.html" %} {% else %} {% include "gallery/partials/thumbnail_empty.html" %} {% endif %} {% endwith %} {% endfor %}
{% endblock %}