{% extends "admin/base_site.html" %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block content %}
{% comment %}The admin chrome already renders the page title as an

from the "title" context variable, so this block starts at

to avoid a duplicate h1.{% endcomment %} {% for row in rows %}

{{ row.registry }}

{% if row.doc %}

{{ row.doc }}

{% endif %}

{{ row.module }}

{% for impl in row.implementations %} {% endfor %}
Slug Name Priority Available Reason
{{ impl.slug }} {{ impl.name }} {{ impl.priority }} {% if impl.available %} available {% else %} unavailable {% endif %} {{ impl.reason|default:"-" }}
{% empty %}

No registries are currently registered.

{% endfor %}

{% endblock %}