{% extends "splitter_base.html" %} {% block main_column %} {% ifequal main_entity_type "property" %} {% with main_entity as each %}
NOTE this is a leaf node.
{% endif %}URI:
{{each.uri}}
Description:
{{each.bestDescription|default:"--"}}
Inherits from ({{ each.ancestors|length }}):
{% for s in each.ancestors %}{{s.qname}} {% if not forloop.last %}|{% endif %} {% endfor %}
Has sub-property (direct):
{% for s in each.children %}{{s.qname}} {% if not forloop.last %}|{% endif %} {% endfor %}
Has Sub Property (all) : {% for s in each.descendants %}{{s.qname}} {% if not forloop.last %}|{% endif %} {% endfor %}
{% endif %}Usage:
{% if each.domains %}
{% for s in each.domains %}
{{s.qname|default:s}} {% if not forloop.last %} && {% endif %}
{% endfor %}
{% else %}
owl:Thing
{% endif %}
=> {{each.qname}} =>
{% if each.ranges %}
{% for s in each.ranges %}
{{s.qname|default:s}} {% if not forloop.last %} && {% endif %}
{% endfor %}
{% else %}
owl:Thing
{% endif %}
{{each.serialize|linebreaks}}