23 lines
655 B
Handlebars
23 lines
655 B
Handlebars
|
<tr class="admin-list-item">
|
||
|
<td class="col first">{{@template.name}}</td>
|
||
|
<td class="col action">
|
||
|
<DButton
|
||
|
@title="admin.form_templates.list_table.actions.view"
|
||
|
@icon="far-eye"
|
||
|
@class="btn-view-template"
|
||
|
@action={{this.viewTemplate}}
|
||
|
/>
|
||
|
<DButton
|
||
|
@title="admin.form_templates.list_table.actions.edit"
|
||
|
@icon="pencil-alt"
|
||
|
@class="btn-edit-template"
|
||
|
@action={{this.editTemplate}}
|
||
|
/>
|
||
|
<DButton
|
||
|
@title="admin.form_templates.list_table.actions.delete"
|
||
|
@icon="far-trash-alt"
|
||
|
@class="btn-danger btn-delete-template"
|
||
|
@action={{this.deleteTemplate}}
|
||
|
/>
|
||
|
</td>
|
||
|
</tr>
|