<h3>Tâches</h3><a class="chat-card-button creer-tache">Nouvelle Tâche</a>
<ul class="item-list alterne-list">
  {{#each taches as |tache id|}}
    {{#unless (eq tache.system.competence 'Chirurgie')}}
    <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}}"/>
      <span class="list-item-label"><a class="action-tache">{{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>
      {{>'systems/foundryvtt-reve-de-dragon/templates/actor/item-action-controls.hbs' item=tache options=@root.options}}
    </li>
    {{/unless}}
  {{/each}}
</ul>