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

Property: {{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 %}

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

{% else %} {% endif %} {% if each.children %}

Has sub-property (direct):
{% for s in each.children %}{{s.qname}} {% if not forloop.last %}|{% endif %} {% endfor %}

{% endif %} {% if 0 and each.descendants and each.descendants|length > each.children|length %}

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 %}

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