keeweb/app/templates/list-item-short.hbs

10 lines
603 B
Handlebars
Raw Normal View History

2015-12-16 22:50:45 +01:00
<div class="list__item {{#if active}}list__item--active{{/if}} {{#if expired}}list__item--expired{{/if}}" id="{{id}}" draggable="true">
{{#if customIcon~}}
2020-04-23 19:24:39 +02:00
<img src="{{customIcon}}" class="list__item-icon list__item-icon--custom {{#if color}}{{color}}{{/if}}" />
2015-12-16 22:50:45 +01:00
{{~else~}}
<i class="fa fa-{{icon}} {{#if color}}{{color}}-color{{/if}} list__item-icon"></i>
{{~/if}}
2020-11-29 11:10:34 +01:00
<span class="list__item-title">{{#if title}}{{title}}{{else}}({{res 'noTitle'}}){{/if}}</span>
<span class="list__item-descr thin">{{#if description}}{{description}}{{else}}&nbsp;{{/if}}</span>
2015-12-16 22:50:45 +01:00
</div>