ui/lib/shared/addon/components/account-row/template.hbs

26 lines
631 B
Handlebars

<td valign="middle" class="row-check" style="padding-top: 2px;">
{{check-box nodeId=model.id}}
</td>
<td data-title="{{dt.id}}">
<a href="{{href-to 'global-admin.accounts.detail' model.id}}">
{{model.id}}
</a>
</td>
<td data-title="{{dt.name}}">
{{#if model.name}}
{{model.name}}
{{else}}
<span class="text-muted">{{t 'generic.none'}}</span>
{{/if}}
</td>
<td data-title="{{dt.username}}">
{{#if model.username}}
{{model.username}}
{{else}}
<span class="text-muted">{{t 'generic.none'}}</span>
{{/if}}
</td>
<td data-title="{{dt.actions}}" class="actions">
{{action-menu model=model}}
</td>