{% extends "imagestore/base.html" %} {% load i18n %} {% load thumbnail %} {% block imagestore-breadcrumb %} {% with "li" as scope_tag %} {% include "imagestore/image-scope.html" %} {% endwith %} {% endblock %} {% block title %} {% include "imagestore/image-scope.html" %} {% endblock %} {% block imagestore-info %} {% if view_user and IMAGESTORE_SHOW_USER %} {% with view_user.get_profile as profile %} {% include "imagestore/user_info.html" %} {% endwith %} {% endif %} {% if album and IMAGESTORE_SHOW_USER %} {% with album.user.get_profile as profile %} {% include "imagestore/user_info.html" %} {% endwith %} {% endif %} {% endblock %} {% block controls %} {% if album %} {% if request.user == album.user or perms.imagestore.moderate_albums %}
  • {% trans "Edit album" %}
  • {% endif %} {% endif %} {% endblock %} {% block content %}

    {% include "imagestore/image-scope.html" %}

    {% include "imagestore/pagination.html" %}
    {% for image in image_list %}
    {% thumbnail image.image "120x120" crop="center" as im %} {{ image.title }} {% if image.title %}
    {{ image.title }} {% endif %}
    {% endthumbnail %}
    {% endfor %}
    {% include "imagestore/pagination.html" %} {% endblock %}