{% extends "base.html" %} {% block navbar %} {% with thispage="entities-az" %} {% include "navbar.html" %} {% endwith %} {% endblock navbar %} {% block sidebar %} {% with thispage="entities-az" %} {% include "sidebar.html" %} {% endwith %} {% endblock sidebar %} {% block bodycontent %} {% with thispage="entities-az" %} {% include "breadcrumbs.html" %} {% endwith %}
{# first column #}
{% if ontospy_graph.classes %}

Classes ({{ ontospy_graph.classes|length }})

{% for each in ontospy_graph.classes %}
{{each.qname}}
{# {{ each.bestDescription|default:"[no definition]" }}#}
{% endfor %}
{% endif %} {% if ontospy_graph.skosConcepts %}

Concepts ({{ ontospy_graph.skosConcepts|length }})

{% for each in ontospy_graph.skosConcepts %}
{{each.qname}}
{# {{ each.bestDescription|default:"[no definition]" }}#}
{% endfor %}
{% endif %}
{# END first column #} {# second column #}
{% if ontospy_graph.properties %}

Properties ({{ ontospy_graph.properties|length }})

{% for each in ontospy_graph.properties %}
{{each.qname}}
{# {{ each.bestDescription|default:"[no definition]" }}#}
{% endfor %}
{% endif %}
{# END second column #}
{% endblock bodycontent %} {% block extrajs %} {% endblock extrajs %}