{% extends "imagestore/base.html" %} {% load i18n %} {% load thumbnail %} {% load url from future %} {% load imagestore_tags %} {% 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 user=view_user %} {% include "imagestore/user_info.html" %} {% endwith %} {% endif %} {% if album and IMAGESTORE_SHOW_USER %} {% with user=album.user %} {% 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 %} {% if image.title %}
    {{ image.title }} {% else %} {% trans 'Info' %} {% endif %}
    {% endthumbnail %}
    {% endfor %}
    {% include "imagestore/pagination.html" %} {% endblock %}