2022-10-04 01:58:49 +02:00
|
|
|
<h3>Tâches</h3><a class="chat-card-button creer-tache">Nouvelle Tâche</a>
|
2022-09-26 03:36:18 +02:00
|
|
|
<ul class="item-list alterne-list">
|
|
|
|
{{#each taches as |tache id|}}
|
2023-01-19 02:42:25 +01:00
|
|
|
{{#unless (eq tache.system.competence 'Chirurgie')}}
|
2023-12-04 01:21:05 +01:00
|
|
|
<li class="item flexrow list-item" data-item-id="{{tache._id}}" data-tooltip="Tâche: {{tache.name}}" >
|
|
|
|
<img class="sheet-competence-img" src="{{tache.img}}"/>
|
2025-01-15 19:13:32 +01:00
|
|
|
<span class="list-item-label"><a class="action-tache">{{tache.name}}
|
2023-01-19 02:42:25 +01:00
|
|
|
({{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>
|
2025-01-15 19:13:32 +01:00
|
|
|
{{>'systems/foundryvtt-reve-de-dragon/templates/actor/item-action-controls.hbs' item=tache options=@root.options}}
|
2023-01-19 02:42:25 +01:00
|
|
|
</li>
|
|
|
|
{{/unless}}
|
2022-09-26 03:36:18 +02:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|