{% extends "imagestore/base.html" %} {% load i18n %} {% load thumbnail %} {% load tagging_tags %} {% block title %} {% trans "Image" %} - {{ image.title }} {% endblock %} {% block imagestore-breadcrumb %} {% if view_user and IMAGESTORE_SHOW_USER %}
  • {% trans "User" %}: {{ view_user.username }} /
  • {% endif %} {% if album %}
  • {% trans "Album" %}: {{ album.name }} /
  • {% endif %} {% if tag %}
  • {% trans "Tag" %}: {{ tag }} /
  • {% endif %}
  • {% if image.title %} {{ image.title }} {% else %} {{ image.id }} {% endif %}
  • {% endblock %} {% block imagestore-info %}
    {% if IMAGESTORE_SHOW_USER %} {% with image.user.get_profile as profile %} {% include "imagestore/user_info.html" %} {% endwith %} {% endif %}
    {% endblock %} {% block content %} {% if image.title %}

    {{ image.title }}

    {% endif %} {% if album or tag or view_user %}

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

    {% endif %}
    {{ image.description }}
    {% thumbnail image.image "800x800" as full_im %} {{ image.title }} {% endthumbnail %}
    {% endblock content %} {% block controls %} {% if request.user == image.user or perms.imagestore.moderate_images %}
  • {% trans "Edit info" %}
  • {% trans "Delete image" %}
  • {% endif %} {% endblock %} {% block imagestore-related %}

    {% trans "Tags" %}

    {% tags_for_object image as itags %} {% for tag in itags %} {{ tag.name }} {% endfor %}
    {% if image.place %}

    {% trans "Place" %}

    {{ image.place.name }} →
    {% endif %} {% endblock %}