{% 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 "300x300" crop=False as im %} {% endthumbnail %}


Revoir l'objet Voir les annotations sur l'image

Annotation créée par {{ annotation.author.username }}

Titre: {{ annotation.current_revision.title }}

Description: {{ annotation.current_revision.description }}

Tags:

{% if user.is_authenticated %}
{% if user == annotation.author %} Editer l'annotation {% else %} Proposer une révision {% endif %} {% endif %}

Commentaires

  {% if comments.has_previous or comments.has_next %}
    {% if comments.has_previous %}
  • {% endif %} {% for page in comments.paginator.page_range %} {% endfor %} {% if comments.has_next %}
  • {% endif %}
{% endif %}
{% if user.is_authenticated %} {% if not comment_form %} {% get_comment_form for annotation as comment_form %} {% endif %}
{% csrf_token %} {{ comment_form.content_type }} {{ comment_form.object_pk }} {{ comment_form.timestamp }} {{ comment_form.security_hash }}

Commenter en tant que {{user.username}}

{% if comment_form.comment.errors %} {% endif %}
{% for metacategory in comment_form.metacategories %} {% endfor %}

{% endif %}
{% endblock %} {% block footer_js %} {% endblock %}