{% extends "base.html" %} {% block title %}{{ typedef.name or typedef.identifier }}{% endblock title %} {% block content -%}
{% if typedef.is_metadata_tag %} Property {% else %} Relation {% endif %} {{ typedef.name or typedef.identifier }} {% if typedef.is_obsolete %} Obsolete {% endif %}
{% if typedef.definition %}

{{ typedef.definition }}

{% endif %}
Local Unique Identifier
{{ typedef.identifier }}
{% if typedef.namespace %}
Namespace
{{ typedef.namespace }}
{% endif %} {{ list_references(typedef.alt_ids, "Alt. IDs") }} {% if typedef.synonym %}
Synonym
    {% for synonym in typedef.synonyms %}
  • {{ synonym }}
  • {% endfor %}
{% endif %} {{ list_references(typedef.parents, "Parents") }} {% for xref in typedef.xrefs %}
Xref {{ bioregistry.get_name(xref.prefix) }}
{{ link_reference(xref) }}
{% endfor %}
{%- endblock content %}