{% extends "admin/base_site.html" %} {% block extrahead %} {% endblock %} {% block content %}

Registry Dashboard

{% for row in rows %}
{{ row.registry }} {% if row.is_hierarchical %} Hierarchical {% endif %} {% if row.parent_registry %} Child of {{ row.parent_registry }} {% endif %}
{% if row.description %}
{{ row.description }}
{% endif %} {% if row.implementations %} {% else %}

No implementations registered

{% endif %} {% if row.children %}

Child Registries:

{% for child in row.children %}
{{ child.registry }} Child Registry
{% if child.implementations %}
    {% for impl in child.implementations %}
  • {{ impl.slug }} {{ impl.name }}
    {% if impl.parent_requirements %}
    Parent: {% for parent in impl.parent_requirements %} {{ parent }} {% endfor %}
    {% endif %} {% if impl.is_available %} {% else %} {% endif %}
  • {% endfor %}
{% else %}

No implementations registered

{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}