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

Your registered applications {% if apps %} Create new application{% endif %}

{% for app in apps %} {% if forloop.first %}
    {% endif %}
  • {{app.name}}

    {% if app.description %}

    {{app.description}}

    {% endif %}

    Client ID: {{ app.client_id }}

    Client secret: {{ app.client_secret }}

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

You haven't registered an application yet.

If you plan to develop an application using our API, developers need to register their application to obtain OAuth security tokens for the applications.

Register a new application
{% endfor %}
{% endblock %} {% block libraries %} {% endblock %}