{% extends 'dashboard/base.html' %} {% block title %}Applications{% endblock %} {% block content %}

Applications

Register and manage apps linked to your APIs and keys.

Register Application

{% csrf_token %}

Your Applications

{{ applications.count }} total
{% for app in applications %}

{{ app.name }}

{{ app.redirect_uri|default:"No redirect URI" }}

Linked APIs: {% for a in app.apis.all %}{{ a.display_name|default:a.name }}{% if not forloop.last %}, {% endif %}{% empty %}None{% endfor %}

Linked API keys: {% for k in app.api_keys.all %}{{ k.name }}{% if not forloop.last %}, {% endif %}{% empty %}None{% endfor %}

View
{% empty %}

No applications registered.

{% endfor %}
{% endblock %}