{% extends 'base.html' %} {% load i18n thumbnail comments %} {% block extra_head %} {% endblock %} {% block infocolumn %}{% endblock %} {% block content %}

{{ album }}

{% if album.is_public or album.user == request.user %} {% trans "Upload photos" %}

{% endif %} {% for photo in photo_list %} {% get_comment_count for photo as comment_count %}
{% thumbnail photo.photo "150" as im %} {% endthumbnail %}
{% trans "Comments" %} – {{ comment_count }} {% if photo.user == request.user %} {% endif %}
{% endfor %} {% include "pagination/pure_pagination.html" %} {% endblock %}