15 lines
660 B
HTML
15 lines
660 B
HTML
|
{{#if meditations.length}}
|
||
|
<h3>Méditations</h3>
|
||
|
<ul class="item-list">
|
||
|
{{#each meditations as |meditation key|}}
|
||
|
<li class="item flexrow" data-item-id="{{meditation._id}}" data-attribute="{{key}}">
|
||
|
<img class="sheet-competence-img" src="{{meditation.img}}" />
|
||
|
<span class="meditation-label flex-grow"><a data-item-id="{{meditation._id}}">{{meditation.name}} - {{meditation.system.competence}}</a></span>
|
||
|
<div class="item-controls flex-shrink">
|
||
|
<a class="item-edit" title="Editer"><i class="fas fa-edit"></i></a>
|
||
|
<a class="item-delete" title="Supprimer"><i class="fas fa-trash"></i></a>
|
||
|
</div>
|
||
|
</li>
|
||
|
{{/each}}
|
||
|
</ul>
|
||
|
{{/if}}
|