2023-01-19 02:46:54 +01:00
|
|
|
<h4>Soins</h4>
|
2023-03-15 00:46:08 +01:00
|
|
|
<div>
|
|
|
|
<a class="chat-card-button creer-tache-blessure-legere"><i class="fas fa-first-aid"></i> légère</a>
|
|
|
|
<a class="chat-card-button creer-tache-blessure-grave"><i class="fas fa-first-aid"></i> grave</a>
|
|
|
|
<a class="chat-card-button creer-tache-blessure-critique"><i class="fas fa-first-aid"></i> critique</a>
|
|
|
|
</div>
|
2023-01-19 02:42:25 +01:00
|
|
|
<ul class="item-list alterne-list">
|
|
|
|
{{#each taches as |tache id|}}
|
|
|
|
{{#if (eq tache.system.competence 'Chirurgie')}}
|
|
|
|
<li class="item flexrow list-item" data-item-id="{{tache._id}}">
|
|
|
|
<img class="sheet-competence-img" src="{{tache.img}}" />
|
|
|
|
<span class="competence-title tache-label"><a>{{tache.name}}
|
|
|
|
({{tache.system.points_de_tache_courant}}{{#if
|
|
|
|
(or @root.options.isGM (not tache.system.cacher_points_de_tache))
|
|
|
|
}}/{{tache.system.points_de_tache}}{{/if}})</a></span>
|
|
|
|
<div class="item-controls flex-shrink">
|
|
|
|
<a class="item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
|
|
|
<a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|