{% extends "base.html" %} {% block navbar %} {% include "navbar.html" %} {% endblock navbar %} {% block sidebar %} {% with thispage=main_entity.qname %} {% include "sidebar.html" %} {% endwith %} {% endblock sidebar %} {% block bodycontent %} {% ifequal main_entity_type "shape" %} {% with main_entity as each %} {% with thispage="shapeinfo" %} {% include "breadcrumbs.html" %} {% endwith %}

{# Class: #} {{each.qname}} {% if not each.children %} leaf node {% endif %}


URI

{{each.uri}}
{% if each.bestLabel %}

Label

{{each.bestLabel}}
{% endif %} {% if each.bestDescription %}

Description

{{each.bestDescription|default:"--"}}
{% endif %} {% if each.ancestors %}

Superclasses ({{each.ancestors|length}})

{% if each.ancestors %} {% for s in each.ancestors %}
  • {{s.qname}}
  • {% endfor %} {% else %}
  • owl:Thing
  • {% endif %}
    {% endif %} {% if each.targetClasses %}

    Target Classes ({{each.targetClasses|length}})

    {% for s in each.targetClasses %}
  • {{s.qname}}
  • {% endfor %}
    {% endif %}

    Implementation

    {% if pygments_code %} {{pygments_code|safe}} {% else %}
    {{each.rdf_source|linebreaks}}
    {% endif %}
    {% endwith %} {% endifequal %} {% endblock bodycontent %}