{% extends 'annotations/base.html' %} {% load i18n %} {% load static %} {% block additional_annotation_css %} {% endblock additional_annotation_css %} {% block additional_annotation_js %} {% endblock additional_annotation_js %} {% block bodyblock %}

{% for set_image in set_images %} {{set_image.name}} {% endfor %}
Picture {{selected_image.name}} not found!

Annotations:

{% for annotation in image_annotations %}
{{ annotation.annotation_type.name }}:
{% if annotation.vector is not None %} {% for key, value in annotation.vector.items %} {% if forloop.counter0 > 0 %} • {% endif %} {{ key }}: {{ value }} {% endfor %} {% else %} {{annotation.content}} {% endif %}
{% endfor %}
{% trans 'No annotations found.' %}

{{selected_image.name}}

{% csrf_token %}

{% if 'annotate' in imageset_perms %}


The bounding box can be moved and resized with i j k l

{% for field in vector_fields %}
{% endfor %}
{% endif %}
{% if 'annotate' in imageset_perms %}

{% else %}
{% endif %}
{% endblock %}