d120774 by Anon Ray at 2014-03-08 |
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> {{ app.name }} </div> |
|
12 |
<div> {{ app.description }} </div> |
|
13 |
<div>APP ID: {{ app.id }} </div> |
|
14 |
<div> APP Secret: {{ app.client_secret }} </div> |
|
15 |
</div> |
|
16 |
{% endfor %} |
|
17 |
</ul> |
|
18 |
{% else %} |
|
19 |
<em> You haven't registered any apps yet! </em> |
|
20 |
{% endif %} |
|
21 |
</div> |
|
22 |
{% endblock %} |