{% extends "photos/base.html" %} {# {% load markup %} #} {% block title %}Photo Sets{% endblock %} {% block content %} {% if object_list %} {% for item in object_list %} {% endfor %}
{% if item.first %} {{ item.first.title }} {% else %} (No photo available) {% endif %}

{{ item.title }}

{{ item.photo_set.count }} photo{{ item.photo_set.count|pluralize}} {% if item.first.date %} starting in {{ item.first.date|date:"M, Y" }}{% endif %}
{% else %}

No galleries have been set up yet.

{% endif %} {% if is_paginated %} {% if has_previous %} « previous | {% endif %} {% if has_next %} next » {% endif %} {% endif %} {% endblock %}