-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtokens.html
More file actions
39 lines (37 loc) · 2.39 KB
/
Copy pathtokens.html
File metadata and controls
39 lines (37 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% extends 'user/base.html' %}
{% block body %}
<div class="collaborator-list limit-width ember-view">
<table class="w-100 mb5">
<tbody>
<tr class="w-100 f5">
<th class="pl1 pr1 pv2 bb b--light-gray b">
application
</th>
<th class="pv2 pr1 bb b--light-gray b">
token
</th>
<th class="pv2 pr1 bb b--light-gray b">
created
</th>
<th class="pv2 pr1 bb b--light-gray b">
expires
</th>
<th class="pv2 pr1 bb b--light-gray b">
</th>
</tr>
{% for token in tokens %}
<tr class="ember-view">
<td class="bb b--light-silver pv2 pr1 gray">{{token.application}}</td>
<td class="bb b--light-silver pv2 pr1 gray">{{token.token}}</td>
<td class="bb b--light-silver pv2 pr1 gray">{{token.created}}</td>
<td class="bb b--light-silver pv2 pr1 gray">{{token.expires}}</td>
<td class="bb b--light-silver action-cell ember-view">
<button onclick="show_confirmation_box('tokens', {{ token.id }})" class="bg-transparent hk-focus-ring--blue:focus cursor-hand br1 ba0 b--none pa--1" title="Delete" type="button" data-v-1034a4fe=""><span class="clip" data-v-1034a4fe="">Delete</span><svg class="icon malibu-icon fill-gray hover-fill-red" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200" data-v-1034a4fe="" style="height: 16px; width: 16px;"><path d="M574.55 522.35L904.4 192.5c16.65-16.65 16.65-44.1 0-60.75l-1.8-1.8c-16.65-16.65-44.1-16.65-60.75 0L512 460.25l-329.85-330.3c-16.65-16.65-44.1-16.65-60.75 0l-1.8 1.8c-17.1 16.65-17.1 44.1 0 60.75l329.85 329.85L119.6 852.2c-16.65 16.65-16.65 44.1 0 60.75l1.8 1.8c16.65 16.65 44.1 16.65 60.75 0L512 584.9l329.85 329.85c16.65 16.65 44.1 16.65 60.75 0l1.8-1.8c16.65-16.65 16.65-44.1 0-60.75L574.55 522.35z" data-v-1034a4fe=""></path></svg></button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
{% block is_token_active %}active{% endblock %}