{% 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 %}
Synonym |
Reference |
Specificity |
{% for synonym in synonyms %}
{{ synonym }} |
{% if reference and reference != '?' %}
{{ reference }}
{% endif %}
|
{% if not specificity %}
Exact
{% elif specificity != '?' %}
{{ specificity }}
{% endif %}
|
{% endfor %}
{% else %}
None available.
{% endif %}
Incoming Relations
{% if incoming_relations %}
{% else %}
None available.
{% endif %}
Outgoing Relations
{% if outgoing_relations %}
{% else %}
None available.
{% endif %}
{% endblock %}