{% extends "base.html" %} {% block title %} | Connected applications{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

Connected applications are applications that you have used before to access and edit data stored in {{ PLATFORM_NAME }}.

Your connected applications

{% for app in connected_apps %} {% if forloop.first %}
    {% endif %}
  • Disconnect

    {{ app.name }}

    {% if app.description %}

    {{app.description}}

    {% endif %}
  • {% if forloop.last %}
{% endif %} {% empty %}

You haven't connected any applications yet.

{% endfor %}
{% endblock %}