{% load i18n localcosmos_tags %}
{% csrf_token %} {% render_bootstrap_form taxaform %}
{% if added %}

{% trans 'The following have been added:' %} {{ added|join:"," }}

{% endif %} {% if existed %}

{% trans 'These taxa already exist:' %} {{ existed|join:"," }}

{% endif %} {% if not_found %}

{% trans 'Not found:' %} {{ not_found|join:"," }}

{% endif %} {% if unambiguous %}

{% trans 'These names yielded more than one result:' %} {% for entry in unambiguous %}
{{ entry.name}} : {{ entry.results|join:"," }}
{% endfor %} {% trans 'Please use "add single taxon" to select which one to add' %}

{% endif %} {% if too_short %}

{% trans 'These names are too short:' %} {{ too_short|join:"," }}

{% endif %}
{% if success is True %} {% endif %}