keeweb/app/templates/auto-type/auto-type-select-item.hbs

17 lines
649 B
Handlebars

<tr class="at-select__item {{#if active}}at-select__item--active{{/if}}" data-id="{{id}}"
id="at-select__item--{{id}}">
<td>
{{~#if customIcon~}}
<img src="{{customIcon}}" class="at-select__item-icon at-select__item-icon--custom {{#if color}}{{color}}{{/if}}" />
{{~else~}}
<i class="fa fa-{{icon}} {{#if color}}{{color}}-color{{/if}} at-select__item-icon"></i>
{{~/if~}}
</td>
<td>{{#if title}}{{title}}{{else}}({{res 'noTitle'}}){{/if}}</td>
<td>{{user}}</td>
<td>{{url}}</td>
<td class="at-select__item-options">
<i class="fa fa-ellipsis-h"></i>
</td>
</tr>