Files
l5rx-chiaroscuro/system/templates/items/property/property-entry.html
Vlyan 3c79556152 Properties from pack
Editable functionalities (hide icons)
2020-12-24 12:54:45 +01:00

10 lines
519 B
HTML

<li class="property flexcol" data-property-id="{{item._id}}">
<ul class="property-header property-control">
<li class="property-img"><img src="{{item.img}}" title="{{item.name}}" width="32px" height="32px"/></li>
<li class="property-name">{{ item.name }}</li>
{{#if editable}}
<li class="property-delete" title="{{localize 'l5r5e.global.delete'}}"><i class="fas fa-trash"></i></li>
{{/if}}
</ul>
<div class="item-description">{{{ item.data.description }}}</div>
</li>