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

Registry Dashboard

{% for row in rows %} {% endfor %}
Registry Implementations
{{ row.registry }}
{% if row.description %}
{{ row.description }}
{% endif %}
    {% for impl in row.implementations %}
  • {% if impl.icon %} {{ impl.icon|safe }} {% endif %} {{ impl.slug }}{{ impl.name }} {% if not impl.is_available %} (Unavailable) {% else %} {% endif %} {% if impl.description %}
    {{ impl.description }}
    {% endif %} {% if impl.condition %}
    Condition: {{ impl.condition }}
    {% endif %}
  • {% endfor %}
{% endblock %}