2022-11-07 19:58:35 +01:00
|
|
|
{{#if rencontres.length}}
|
|
|
|
<h3>Rencontres en attente dans les TMR</h3>
|
|
|
|
<ul class="item-list">
|
|
|
|
{{#each rencontres as |rencontre key|}}
|
|
|
|
<li class="item flexrow" data-item-id="{{rencontre._id}}" data-attribute="{{key}}">
|
|
|
|
<img class="sheet-competence-img" src="{{rencontre.img}}" />
|
2022-12-05 15:29:00 +01:00
|
|
|
<span class="item-edit flex-grow"><a>
|
2022-11-07 00:04:43 +01:00
|
|
|
{{rencontre.name}} r{{rencontre.system.force}} ({{rencontre.system.coord}} - {{caseTmr-label rencontre.system.coord}})
|
|
|
|
</a></span>
|
2022-11-07 19:58:35 +01:00
|
|
|
{{#if rencontre.system.date}}
|
|
|
|
<span class="flex-shrink">{{upperFirst rencontre.system.heure}}, le {{rencontre.system.date}}</span>
|
|
|
|
{{/if}}
|
|
|
|
<div class="item-controls flex-shrink">
|
|
|
|
<a class="item-delete" title="Supprimer"><i class="fas fa-trash"></i></a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|