{% extends "base.html" %} {% load i18n %} {% block title %}{{ group.name }} {% trans "Dashboard" %}{% endblock %} {% block content %}

{{ group.name }} {% trans "Dashboard" %}

{% if can_edit_group %} {% trans "Tenant Group Settings" %} {% endif %}

{% trans "Tenants" %}

{% for tenant in tenants %} {% endfor %}
{% trans "Tenant Name" %} {% trans "Description" %} {% trans "Backend" %}
{{ tenant.name }} {{ tenant.description }} {# This does a query per tenant. Move to a view if # of tenants becomes unexpectedly high #} {{ tenant.primary_backend }}
{% endblock %}