{% load i18n static %}

{% trans 'Taxa with changes only in organizational data (e.g. position in tree)' %}

{% if result.position_or_name_uuid_changed %}
{% blocktrans %}These taxa had changes only in organizational data like their position in the taxonomic tree. You can safely update these taxa without changing their scientific name or author.{% endblocktrans %}
{% for taxon in result.position_or_name_uuid_changed %}
{{ taxon.taxon_latname }} {{ taxon.taxon_author }}
{% endfor %}
{% csrf_token %}
{% else %}
{% trans 'No taxa with changes in organizational data found.' %}
{% endif %}

{% trans 'Taxa with potentially new author' %}

{% if result.taxa_new_author %} {% for entry in result.taxa_new_author %}
{{ entry.taxon.taxon_latname }} {{ entry.taxon.taxon_author }}
{% trans 'New author names:' %}
{% for similar_entry in entry.new_author_taxa %}
{{ similar_entry.similar_taxon.taxon_latname }} {{ similar_entry.similar_taxon.taxon_author }}
{{ similar_entry.form }}
{% endfor %}
{% endfor %} {% else %}
{% trans 'No taxa with new author found.' %}
{% endif %}

{% trans 'Taxa now found as a synonym' %}

{% if result.taxa_in_synonyms %} {% for entry in result.taxa_in_synonyms %}
{{ entry.taxon.taxon_latname }} {{ entry.taxon.taxon_author }}
{% trans 'accepted name:' %}
{{ entry.taxon.reference_accepted_name.taxon_latname }} {{ entry.taxon.reference_accepted_name.taxon_author }}
{{ entry.form }}
{% endfor %} {% else %}
{% trans 'No taxa found as synonyms.' %}
{% endif %}

{% trans 'Taxa not found in the taxonomic database anymore' %}

{% if result.taxa_missing %}
{% for taxon in result.taxa_missing %}
{{ taxon }}
{% endfor %}
{% else %}
{% trans 'No missing taxa found.' %}
{% endif %}