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

You have selected: {% if count.images %}{{ count.images }} {% plural count.images 'image' 'images' %}, {% endif %}{% if count.datasets %}{{ count.datasets }} {% plural count.datasets 'dataset' 'datasets' %}, {% endif %}{% if count.projects %}{{ count.projects }} {% plural count.projects 'project' 'projects' %}, {% endif %}{% if count.screens %}{{ count.screens }} {% plural count.screens 'screen' 'screens' %}, {% endif %}{% if count.plates %}{{ count.plates }} {% plural count.plates 'plate' 'plates' %}, {% endif %}{% if count.wells %}{{ count.wells }} {% plural count.wells 'well' 'wells' %}, {% endif %} now you can annotate them using forms below.

{% if form_multi %}
{% if form_multi.image.errors %}{% endif %} {% if form_multi.dataset.errors %}{% endif %} {% if form_multi.project.errors %}{% endif %} {% if form_multi.screen.errors %}{% endif %} {% if form_multi.plate.errors %}{% endif %} {% if form_multi.well.errors %}{% endif %}
{{ form_multi.image.label_tag }}
{% if form_multi.image.required %}*{% endif %}{{ form_multi.image.errors }}
{{ form_multi.dataset.label_tag }}
{% if form_multi.dataset.required %}*{% endif %}{{ form_multi.dataset.errors }}
{{ form_multi.project.label_tag }}
{% if form_multi.project.required %}*{% endif %}{{ form_multi.project.errors }}
{{ form_multi.screen.label_tag }}
{% if form_multi.screen.required %}*{% endif %}{{ form_multi.screen.errors }}
{{ form_multi.plate.label_tag }}
{% if form_multi.plate.required %}*{% endif %}{{ form_multi.plate.errors }}
{{ form_multi.well.label_tag }}
{% if form_multi.well.required %}*{% endif %}{{ form_multi.well.errors }}
{{ form_multi.image }}
{{ form_multi.dataset }}
{{ form_multi.project }}
{{ form_multi.screen }}
{{ form_multi.plate }}
{{ form_multi.well }}

{% trans "Add new comment" %}:

{{ form_multi.content.label_tag }}{% if form_multi.content.required %}*{% endif %} {{ form_multi.content.help_text|safe }}
{% if form_multi.content.errors %}{{ form_multi.content.errors }}{% endif %}
{{ form_multi.content }}

{% trans "Add new tag" %}:

{{ form_multi.tag.label_tag }}{% if form_multi.tag.required %}*{% endif %} {{ form_multi.tag.help_text|safe }}
{% if form_multi.tag.errors %}{{ form_multi.tag.errors }}{% endif %}
{{ form_multi.tag }}
{{ form_multi.description.label_tag }}{% if form_multi.description.required %}*{% endif %} {{ form_multi.description.help_text|safe }}
{% if form_multi.description.errors %}{{ form_multi.description.errors }}{% endif %}
{{ form_multi.description }}

{% trans "Use existing tag" %}:

{{ form_multi.tags.label_tag }}{% if form_multi.tags.required %}*{% endif %} {{ form_multi.tags.help_text|safe }}
{% if form_multi.tags.errors %}{{ form_multi.tags.errors }}{% endif %}
{{ form_multi.tags }}

{% trans "Add new file" %}:

{{ form_multi.annotation_file.label_tag }}{% if form_multi.annotation_file.required %}*{% endif %} {{ form_multi.annotation_file.help_text|safe }}
{% if form_multi.annotation_file.errors %}{{ form_multi.annotation_file.errors }}{% endif %}
{{ form_multi.annotation_file }}

{% trans "Use existing file" %}:

{{ form_multi.files.label_tag }}{% if form_multi.files.required %}*{% endif %} {{ form_multi.files.help_text|safe }}
{% if form_multi.files.errors %}{{ form_multi.files.errors }}{% endif %}
{{ form_multi.files }}
{% endif %}
{% endblock %}