2018-10-19 15:17:02 +00:00
|
|
|
{{yield}}
|
|
|
|
{{#if (gt items.length 0)}}
|
|
|
|
{{#tabular-collection
|
|
|
|
data-test-tokens
|
2019-05-01 18:09:29 +00:00
|
|
|
class='token-list'
|
2019-05-08 09:02:09 +00:00
|
|
|
rows=5
|
2018-10-19 15:17:02 +00:00
|
|
|
items=(sort-by 'AccessorID:asc' items) as |item index|
|
|
|
|
}}
|
|
|
|
{{#if caption}}
|
2020-01-15 09:15:54 +00:00
|
|
|
{{#block-slot name='caption'}}{{caption}}{{/block-slot}}
|
2018-10-19 15:17:02 +00:00
|
|
|
{{/if}}
|
2020-01-15 09:15:54 +00:00
|
|
|
{{#block-slot name='header'}}
|
2018-10-19 15:17:02 +00:00
|
|
|
<th>AccessorID</th>
|
|
|
|
<th>Scope</th>
|
|
|
|
<th>Description</th>
|
|
|
|
{{/block-slot}}
|
2020-01-15 09:15:54 +00:00
|
|
|
{{#block-slot name='row'}}
|
2018-10-19 15:17:02 +00:00
|
|
|
<td data-test-token="{{item.AccessorID}}">
|
|
|
|
<a href={{href-to 'dc.acls.tokens.edit' item.AccessorID}} target={{or target ''}}>{{truncate item.AccessorID 8 false}}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{if item.Local 'local' 'global'}}
|
|
|
|
</td>
|
|
|
|
<td>
|
2019-06-14 17:27:37 +00:00
|
|
|
<p>{{item.Description}}</p>
|
2018-10-19 15:17:02 +00:00
|
|
|
</td>
|
|
|
|
{{/block-slot}}
|
|
|
|
{{/tabular-collection}}
|
|
|
|
{{/if}}
|