{% extends "_layout.html" %} {% block title %}Connections{% endblock %} {% block content %}
{% if connection_rows %}
{% for row in connection_rows %}
{{ row.connection_name }}
{{ row.provider_display_name }} ยท {{ row.auth_type_label }}
{{ row.status }}
{% endfor %}
{% else %}
No connections yet
Go to Applications to configure a provider and start a new login.
Add new connection
{% endif %} {% endblock %}