{% extends "imagestore/base.html" %} {% load i18n %} {% load thumbnail %} {% load tagging_tags %} {% block title %} {% trans "Image" %} - {{ image.title }} {% endblock %} {% block breadcrumb %} {{ block.super }} » {% trans "Gallery" %} » {% trans "Image" %}: {{ image.title }} {% endblock %} {% block content %}
{% trans "Upload image" %}
{% for limg in image_list %} {% thumbnail limg.image "50x50" crop="center" as im %} {% ifequal limg.id image.id %} {% else %} {% endifequal %} {% endthumbnail %} {% endfor %} {% if is_paginated %} {% endif %}

{{ image.title }}

{{ image.description }}
{% trans "Tags" %}: {% tags_for_object image as itags %} {% for tag in itags %} {{ tag.name }} {% endfor %}
{% thumbnail image.image "800x800" as full_im %} {{ image.title }} {% endthumbnail %}
{% endblock content %}