{% extends "base.html" %} {% block title %}{{ row.identifier }}{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}

{{ row.identifier }}

{% if row.description_text %}

{{ row.description_text }} {% if row.description_source %} ({{ row.description_source }}) {% endif %}

{% else %} No description text available {% endif %}

Cross-references

{% if xrefs %} {% else %} None available. {% endif %}

Synonyms

{% if synonyms %} {% for synonym in synonyms %} {% endfor %}
Synonym Reference Specificity
{{ synonym }} {% if reference and reference != '?' %} {{ reference }} {% endif %} {% if not specificity %} Exact {% elif specificity != '?' %} {{ specificity }} {% endif %}
{% else %} None available. {% endif %}

Incoming Relations

{% if incoming_relations %} {% for source_namespace, source_identifier, source_name, relation in incoming_relations %} {% endfor %}
Identifier Name Relation
{% if source_namespace !='FPLX' %} {{ source_namespace }}:{{ source_identifier }} {% else %} {{ source_namespace }}:{{ source_identifier }} {% endif %} {{ source_name }} {{ relation }}
{% else %} None available. {% endif %}

Outgoing Relations

{% if outgoing_relations %} {% for relation, target_namespace, target_identifier, target_name in outgoing_relations %} {% endfor %}
Relation Identifier Name
{{ relation }} {% if target_namespace != 'FPLX' %} {{ target_namespace }}:{{ target_identifier }} {% else %} {{ target_namespace }}:{{ target_identifier }} {% endif %} {{ target_name }}
{% else %} None available. {% endif %}
{% endblock %}