{% extends "layout.html" %} {% load uni_form_tags %} {% block title %}Your Clients{% endblock %} {% block content %}

Your Clients

{% if clients %} {% for client in clients %} {% endfor %}
Name Credentials
{{ client.name }} Key: {{ client.key }}
{% csrf_token %}
Secret: {{ client.secret }}

Go to the homepage to authorize these clients to request information on your behalf.

{% else %}

You have no clients. To create one just put a name in the form below - for example, “My Test Client”

{% endif %}
{% uni_form form form.helper %}
{% endblock %}