keeweb/app/templates/select/select-entry-item.hbs

17 lines
670 B
Handlebars

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