{% extends "base.html" %} {% load thumbnail %} {% block title %}Photos - {{ object_list.0.album.caption }}{% endblock %} {% block content %} {% if object_list %}

{{ object_list.0.album.name }}

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

{{ photo.caption }}

{% endif %}
{% 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 %}