{% extends "admin/base_site.html" %} {% load i18n taxomesh_tags %} {% block title %}Taxonomy Graph{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Taxonomy Graph

{% if error %}

{{ error }}

{% elif not has_entries %}

No categories found. Add one to get started.

{% else %}
{% for entry in entries %}
{% if entry.enabled %} {% else %} {% endif %} {% if entry.has_descendants %} {% if entry.initially_collapsed %} {% else %} {% endif %} {% endif %} {% if entry.kind == "category" %} {{ entry.name }} {% else %} {% with entry_rels=item_relations|get_item:entry.uuid %} {% if entry_rels %} {% endif %} {% endwith %} {{ entry.name }} {% endif %} {% if entry.linked_url %} {% endif %}
{% if entry.kind == "item" %} {% with entry_rels=item_relations|get_item:entry.uuid %} {% if entry_rels %}
{% for rel in entry_rels %}
[{{ rel.relation_type }}] → {{ rel.target_name }}
{% endfor %}
{% endif %} {% endwith %} {% endif %} {% endfor %}
{% endif %} {% endblock %}