mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
793f0747c6
This means its more straightforwards to calculate the height of the listing itself. This component is currently only used on the form pages for tokens and roles, should therefore be a restricted size.
29 lines
841 B
Handlebars
29 lines
841 B
Handlebars
{{yield}}
|
|
{{#if (gt items.length 0)}}
|
|
{{#tabular-collection
|
|
data-test-tokens
|
|
class='token-list'
|
|
rows=5
|
|
items=(sort-by 'AccessorID:asc' items) as |item index|
|
|
}}
|
|
{{#if caption}}
|
|
{{#block-slot 'caption'}}{{caption}}{{/block-slot}}
|
|
{{/if}}
|
|
{{#block-slot 'header'}}
|
|
<th>AccessorID</th>
|
|
<th>Scope</th>
|
|
<th>Description</th>
|
|
{{/block-slot}}
|
|
{{#block-slot 'row'}}
|
|
<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>
|
|
{{item.Description}}
|
|
</td>
|
|
{{/block-slot}}
|
|
{{/tabular-collection}}
|
|
{{/if}} |