{% load i18n localcosmos_tags %} {% if taxon_images %}
{% trans 'Images from taxonomic collection' %}
{% for image in taxon_images %}
{% endfor %}

{% endif %} {% if node_images %}
{% trans 'Images from nature guides' %}
{% for image in node_images %}
{% endfor %}

{% endif %}
{% if taxon_profile_images %}
{% trans 'Images manually added to this profile' %}
{% endif %} {% for image in taxon_profile_images %}
{% if image.text %}
{{ image.text|safe }}
{% endif %}
{% if image.is_primary %}
{% trans 'primary image' %}
{% endif %}
{% endfor %}
{% if taxon_images or node_images or taxon_profile_images %} {% else %} {% trans 'No images found.' %} {% endif %}