{% extends 'app_kit/manage_generic_content.html' %} {% load i18n static localcosmos_tags %} {% block content %}

{% trans 'Taxon Relationships' %}

{% trans 'Relationship Types' %}
{% for relationship_type in taxon_relationship_types %}
{{ relationship_type.relationship_name }}
{% empty %}
{% trans 'No relationship types yet.' %}
{% endfor %}

{% trans 'Existing Relationships' %}
{% if not taxon_relationship_types %}
{% trans 'You have to create a Taxon Relationship Type first' %}
{% else %} {% include 'backbonetaxonomy/ajax/taxon_relationship_list.html' %} {% endif %}
{% if taxon_relationship_types %}
{% endif %}
{% endblock %}