{% extends "base.html" %} {% load static %} {% block title %}All galleries{% endblock %} {% block content %}

All galleries

{% if object_list %} {% for gallery in object_list.all %}

{{gallery.title}}

Published {{gallery.date_added}}

{% endfor %} {% else %}
No galleries were found.
{% endif %} {% endblock %}