John Cowen 793f0747c6
ui: Gives the minimal in-form token list use a maximum row size (#5807)
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.
2019-05-08 10:02:09 +01:00

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}}