{% extends "_layout.html" %} {% block title %}Connections{% endblock %} {% block content %}
{% for p in providers %}
{{ p.display_name }}
{{ p.auth_type_label }}
{% if p.status == 'reauth' %} Re-auth {% elif p.status == 'connected' %} ● Connected {% else %}
{% endif %}
{% endfor %}
{% endblock %}