8fe0bbc by Anon Ray at 2014-05-10 |
1 |
{% extends "layout.html" %} |
|
2 |
{% block body %} |
|
3 |
<div> |
|
4 |
{% if apps|length > 0 %} |
|
5 |
<ul> |
|
6 |
{% for app in apps %} |
|
7 |
<div class="well"> |
|
8 |
<div class="pull-right"> |
|
9 |
<span class="glyphicon glyphicon-trash"></span> |
|
10 |
</div> |
|
11 |
<div><h4> {{ app.name }} </h4></div> |
|
12 |
<div><h5> {{ app.description }} </h5></div> |
|
13 |
<div>APP ID: {{ app.id }} </div> |
|
14 |
<div> APP Secret: {{ app.client_secret }} </div> |
|
15 |
<div>Host URL: {{ app.host_url }} </div> |
|
16 |
<div>Redirect URL: {{ app.redirect_uris|join(', ') }} </div> |
|
17 |
<div>Scopes: {{ app.default_scopes|join(', ') }} </div> |
|
18 |
</div> |
|
19 |
{% endfor %} |
|
20 |
</ul> |
|
21 |
{% else %} |
|
22 |
<em> You haven't registered any apps yet! </em> |
|
23 |
{% endif %} |
|
24 |
</div> |
|
25 |
{% endblock %} |