{% extends 'base.html' %} {% block content %}

{{ album.title }} {{ paginator.total }} photos

{{ album.photoset.description }}

{% if page %}
{% for photo in page %}
{{ photo.description }}
{% endfor %}
{% include "gallery/flickr/parts/pagination.html" %} {% else %}
{% for photo in photos %}
{{ photo.description }}
{% endfor %}
{% endif %}
{% endblock content %}