{% extends "webclient/base/base_frame.html" %} {% load i18n %} {% load markup %} {% load custom_tags %} {% block link %} {% endblock %} {% block jscript %} {% endblock %} {% block script %} {% endblock %} {% block content %} {% if form_comment %}

{% trans "Add new comment" %}:

{% for field in form_comment %} {% endfor %}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field }}{{ field.help_text|safe }}
{% endif %} {% if form_tag %}

{% trans "Add new tag" %}:

This form allows you to create a new tag.

{% for field in form_tag %} {% endfor %}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field.label_tag }}{% if field.field.required %}*{% endif %}{{ field }}{{ field.help_text|safe }}
{% endif %} {% if form_tags %}

{% trans "Use existing tag" %}:

This page allows you to choose an existing tags.

{% for field in form_tags %} {% endfor %}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field }}{{ field.help_text|safe }}
{% endif %} {% if form_tag or form_tags %}

 

WARNING: Users in a collaborative group can view and annotate the data belonging to other users. You can tag another user's images or use their tags to annotate your own images.

{% endif %} {% if form_file %}

{% trans "Upload a new file" %}:

{% for field in form_file %} {% endfor %}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field }}{{ field.help_text|safe }}
{% endif %} {% if form_files %}

{% trans "Attach existing file" %}:

{% for field in form_files %} {% endfor %}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field }}{{ field.help_text|safe }}
{% endif %} {% if form_sharecomments %}

{% trans "Add new comment" %}:

{% for field in form_sharecomments %} {% endfor %}
{{ field.label_tag }}{% if field.field.required %}*{% endif %} {{ field.help_text|safe }}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field }}
{% endif %} {% endblock %}