{% extends "base.html" %} {% block title %} | Register a new application{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

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 %}