{% extends "photologue/root.html" %} {% load url from future %} {% block title %}All Galleries{% endblock %} {% block content %}

All galleries

{% if object_list %} {% for gallery in object_list %} {% endfor %} {% else %}

No galleries were found.

{% endif %} {% if is_paginated %}

{{ page_obj.paginator.count }} galleries total.

{% if page_obj.has_previous %} Previous | {% endif %} page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %}| Next{% endif %}

{% endif %} {% endblock %}