{% extends "base.html" %} {% block title %}{{ concept.pref_labels|lang('en') }} - PyST{% endblock %} {% block page_header %}

{{ concept.pref_labels|lang(language) }}

Hierarchy >> {{ scheme|best_short_label(language) }}{% for obj in hierarchy %} >> {{ obj.1|best_short_label(language) }}{% endfor %}

Back to Schemes
{% endblock %} {% block content %}

Definition

{% if concept.definitions|lang(language) %} {{ concept.definitions|lang(language) }} {% else %} No definition available {% endif %}
{% if broader_concepts or narrower_concepts %}

Concept Hierarchy

{% if broader_concepts %}

Broader Concepts {{ broader_concepts|length }}

{% endif %}
Current Concept
{% if narrower_concepts %}

Narrower Concepts {{ narrower_concepts|length }}

{% endif %}
{% endif %} {% if associations %} {% endif %} {% if concept.editorial_notes or concept.change_notes or concept.history_notes %}

Notes

{% if concept.editorial_notes %}

Editorial Notes

{% for note in concept.editorial_notes %}

{{ note['@value'] }}

{% endfor %}
{% endif %} {% if concept.change_notes %}

Change Notes

{% for note in concept.change_notes %}

{{ note['@value'] }}

{% endfor %}
{% endif %} {% if concept.history_notes %}

History Notes

{% for note in concept.history_notes %}

{{ note['@value'] }}

{% endfor %}
{% endif %}
{% endif %}

Concept Information

IRI

{{ concept.id_|short_iri }}

{% if concept.notations %}

Notation

{{ concept.notations[0]['@value'] }}

{% endif %} {% if concept.status %}

Status

{% set status = concept.status[0]['@id']|split('/')|last|title %} {{ status }}
{% endif %} {% if concept.schemes %}

Concept Schemes

{% for scheme in scheme_list %} {{ scheme.1['@id'] }} {% endfor %}
{% endif %} {% if concept.alt_labels %}

Alternative Labels

{% for label in concept.alt_labels %} {{ label['@language'] }}: {{ label['@value'] }} {% endfor %}
{% endif %} {% if concept.hidden_labels %}

Hidden Labels

{% for label in concept.hidden_labels %}
{{ label['@language'] }}: {{ label['@value'] }}
{% endfor %}
{% endif %}
{% endblock %}