Files
l5rx-chiaroscuro/system/templates/items/title/title-entry.html
Vlyan cda02bd8c7 Working on 0.8.x
- NPC with all ring on strengths/weaknesses (CSS TODO).
- Removed Custom tech "Links" as they are in fact "Bonds" and need more work.
- Added Bonds, SignatureScroll, ItemPatterns and working on titles
2021-05-09 14:43:46 +02:00

13 lines
872 B
HTML

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