summaryrefslogtreecommitdiffstats
path: root/settings/js/authtoken.handlebars
blob: ab3405c889975bdf8ccea2d9db407aa52e7b235b (plain)
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
<tr data-id="{{id}}">
	<td class="client">
	    <div class="{{icon}}" />
	</td>
	<td class="has-tooltip" title="{{title}}">
		<span class="token-name">{{name}}</span>
	</td>
	<td>
		<span class="last-activity has-tooltip" title="{{lastActivityTime}}">{{lastActivity}}</span></td>
	<td class="more">
		{{#if showMore}}<a class="icon icon-more"/>{{/if}}
		<div class="popovermenu menu">
		{{#if canScope}}
			<li><span class="menuitem">
				<input class="filesystem checkbox" type="checkbox" id="{{id}}_filesystem" {{#if scope.filesystem}}checked{{/if}}/>
				<label for="{{id}}_filesystem">' + t('settings', 'Allow filesystem access') </label><br/>
			</span></li>
		{{/if}}
		{{#if canDelete}}
			<li>
				<a class="icon icon-delete has-tooltip" title="' + t('settings', 'Disconnect') ">' + t('settings', 'Revoke') +'</a>
			</li>
		{{/if}}
		</div>
	</td>
<tr>