{% 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.all_classes%}

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

{% for each in ontospy_graph.all_classes %}
{{each.title}}
{# {{ each.bestDescription|default:"[no definition]" }}#}
{% endfor %}
{% endif %} {% if ontospy_graph.all_skos_concepts %}

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

{% for each in ontospy_graph.all_skos_concepts %}
{{each.title}}
{# {{ each.bestDescription|default:"[no definition]" }}#}
{% endfor %}
{% endif %} {% if ontospy_graph.all_individuals %}

Individuals ({{ ontospy_graph.all_individuals|length }})

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

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

{% for each in ontospy_graph.all_properties %}
{{each.title}}
{# {{ each.bestDescription|default:"[no definition]" }}#}
{% endfor %}
{% endif %} {% if ontospy_graph.all_shapes%}

Shapes ({{ ontospy_graph.all_shapes|length }})

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