{% extends "imagestore/base.html" %} {% load i18n %} {% load thumbnail %} {% load tagging_tags %} {% block title %} {% trans "Image" %} - {{ image.title }} {% endblock %} {% block breadcrumb %} {{ block.super }} » {% trans "Gallery" %} » {% 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 %}

{{ image.title }}

{% 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 %}