{% extends "splitter_base.html" %} {% block main_column %} {% ifequal main_entity_type "concept" %} {% with main_entity as each %}

Concept: {{each.qname}}   back to top


{% if not each.children %}

NOTE this is a leaf node.

{% endif %}

URI:
{{each.uri}}

Description:
{{each.bestDescription|default:"--"}}

{% if each.ancestors %}

Has Broader concept ({{ each.ancestors|length }}):
{% for s in each.ancestors %}{{s.qname}} {% if not forloop.last %}|{% endif %} {% endfor %}

{% endif %} Implementation: {% if pygments_code %} {{pygments_code|safe}} {% else %}
{{each.serialize|linebreaks}}
{% endif %}
{% endwith %} {% endifequal %} {% endblock main_column %}