{% comment %} Displaying a list of Photosets. Expects: * photoset_list, a queryset of Photosets. {% endcomment %} {% if photoset_list|length > 0 %} {% load ditto_core %}
{% for photoset in photoset_list %}

{{ photoset.title }}

{% if photoset.primary_photo %}

{% endif %}

{% include 'flickr/includes/photoset_counts.html' with photoset=photoset only %}

{% endfor %}
{% else %}

There are no Albums to show.

{% endif %}