{% load i18n static localcosmos_tags %} {% for object_class in object_class_list %}
{{ object_class.name }}
{% if object_class.description %}
{{ object_class.description }}
{% endif %} {% if object_class.taxa.exists %}
{% trans 'Taxa' %}:
{% for taxon_link in object_class.taxa.all %}
{{ taxon_link.taxon_latname }} {% trans 'Delete' %}
{% endfor %}
{% else %}
{% trans 'No taxa have been assigned to this object class yet.' %}
{% endif %}
{% empty %}
{% trans "You have not created any object classes yet." %}
{% endfor %}