ui/lib/global-admin/addon/components/policy-row/template.hbs

15 lines
360 B
Handlebars

<td>
{{searchable-select
content=choices
value=model.policyId
optionLabelPath="name"
optionValuePath="id"
readOnly=readOnly
}}
</td>
<td>&nbsp;</td>
{{#unless readOnly}}
<div class="input-group-btn">
<button class="btn bg-primary btn-sm" type="button" {{action "remove"}}><i class="icon icon-minus"/></button>
</div>
{{/unless}}