{% extends 'iconolab_base.html' %} {% load i18n %} {% load staticfiles %} {% load comments %} {% load comments_xtd %} {% load thumbnail %} {% load iconolab_tags %} {% block content %} Revoir l'image
{% thumbnail annotation.image.media "x300" crop="center" as im %} {% endthumbnail %}

Title: {{ annotation.current_revision.title }}

Description: {{ annotation.current_revision.description }}

Tags: {{ annotation.current_revision.tags }}

Editer | Proposer une révision
{% get_comment_list for annotation as comment_list %}
{% for comment in comment_list %}
{{ comment.name }}

{{ comment.comment }}

{{ comment.submit_date }} -  {% if comment.allow_thread %} - {% trans "Reply" %}{% endif %}
{% endfor %}
{% if user.is_authenticated %} {% get_comment_form for annotation as comment_form %}
{% csrf_token %} {{ comment_form.content_type }} {{ comment_form.object_pk }} {{ comment_form.timestamp }} {{ comment_form.security_hash }}
{% endif %}
{% endblock %}