{% extends "base.html" %} {% load thumbnail %} {% block content %} {% if object_list %}

{{ object_list.0.album.name }}

{{ object_list.0.album.caption }}
{% for photo in object_list %}
{{ photo.caption }}

{{ photo.caption }}

{% endfor %}
 
{% if is_paginated %}

Pages: {% if page_obj.has_previous %} Previous | {% endif %} {% for paginator_page in paginator.page_range %} {% if forloop.first %} {% else %} | {% endif %} {% ifequal paginator_page page %} {{ page }} {% else %} {{ paginator_page }} {% endifequal %} {% endfor %} {% if page_obj.has_next %} | Next {% endif %}

{% endif %} {% else %}

There are no photos available.

{% endif %} {% endblock %}