2022-09-26 03:36:18 +02:00
|
|
|
{{#if hautreve.rencontres.length}}
|
|
|
|
<h3>Rencontres en attente dans les TMR</h3>
|
|
|
|
<ul class="item-list">
|
|
|
|
{{#each hautreve.rencontres as |rencontre key|}}
|
|
|
|
<li class="item flexrow" data-item-id="{{key}}" data-attribute="{{key}}">
|
|
|
|
<span class="display-label"><a data-item-id="{{key}}">{{rencontre.name}} r{{rencontre.force}}</a></span>
|
|
|
|
<span class="flex-shrink">{{rencontre.coord}} - {{caseTmr-label rencontre.coord}}</span>
|
|
|
|
{{#if rencontre.date}}
|
|
|
|
<span>{{upperFirst rencontre.heure}}, le {{rencontre.date}}</span>
|
|
|
|
{{/if}}
|
|
|
|
<div class="item-controls flex-shrink">
|
|
|
|
<a class="rencontre-delete" title="Supprimer"><i class="fas fa-trash"></i></a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
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}}" />
|
|
|
|
<span class="display-label"><a>{{rencontre.name}} r{{rencontre.system.force}}</a></span>
|
|
|
|
<span class="flex-shrink">{{rencontre.system.coord}} - {{caseTmr-label rencontre.system.coord}}</span>
|
|
|
|
{{#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}}
|
|
|
|
|