Files
l5rx-chiaroscuro/system/templates/items/property/property-entry.html
Vlyan 791a98eb3c 20Q added a summary
Some language refactoring
Allow toggle even without editing perm
Fix DnD on school rank with npc as they don't have it
2021-01-03 12:22:53 +01:00

12 lines
662 B
HTML

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