{% extends "pgallery/base_photos.html" %} {% load url from future %} {% load i18n %} {% load pagination_tags %} {% block content %} {% autopaginate gallery_list 5 %} {% for gallery in gallery_list %}

{{ gallery.title }}

{% include "pgallery/thumbnail_list.html" with photo_list=gallery.get_teaser_photos %}
{% empty %}

{% trans "There aren't any galleries (yet)." %}

{% trans "Meanwhile, enjoy this glorious sketch." %}

{% endfor %} {% paginate %} {% endblock %}