2021-05-07 17:27:02 +02:00
|
|
|
<div class="post-item" data-transfer="{{transfer}}">
|
2021-05-27 01:10:05 +02:00
|
|
|
<h3>{{#if alias}}{{alias}} propose: {{else}}Acheter {{/if}}{{item.name}}</h3>
|
2021-05-07 17:27:02 +02:00
|
|
|
{{#if item.img}}
|
2021-06-22 23:10:32 +02:00
|
|
|
<img class="chat-icon" src="{{item.img}}" title="{{item.name}}" alt="{{item.name}}" />
|
2021-05-07 17:27:02 +02:00
|
|
|
{{/if}}
|
2022-06-12 12:14:55 +02:00
|
|
|
<div class="poesie-extrait poesie-overflow card-content">{{{item.system.description}}}</div>
|
2021-05-07 17:27:02 +02:00
|
|
|
<p>
|
|
|
|
{{#each properties as |property p|}}
|
|
|
|
<span>{{{property}}}</span><br>
|
|
|
|
{{/each}}
|
|
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
|
|
{{#unless quantiteIllimite}}
|
|
|
|
<span>Lots disponibles: <span class="quantiteNbLots">{{quantiteNbLots}}</span></span><br>
|
|
|
|
{{/unless}}
|
|
|
|
{{#if (gt tailleLot 1)}}
|
|
|
|
<span>Lots de: <span class="tailleLot">{{tailleLot}}</span></span><br>
|
|
|
|
{{/if}}
|
2021-06-14 23:46:57 +02:00
|
|
|
{{#if (ne prixLot 0)}}
|
2021-05-07 17:27:02 +02:00
|
|
|
<span><strong>Prix {{#if (gt tailleLot 1)}}du lot {{else}}unitaire{{/if}}:
|
|
|
|
<span class="prixLot">{{prixLot}}</span> Sols</strong></span><br>
|
|
|
|
{{/if}}
|
|
|
|
</p>
|
2021-10-30 00:41:55 +02:00
|
|
|
{{#if (or (gt quantiteNbLots 0) quantiteIllimite)}}
|
2021-05-07 17:27:02 +02:00
|
|
|
<span class="chat-card-button-area">
|
2021-10-30 00:41:55 +02:00
|
|
|
<a class="button-acheter chat-card-button"
|
|
|
|
data-jsondata='{{jsondata}}'
|
|
|
|
{{#if vendeurId}}data-vendeurId='{{vendeurId}}'{{/if}}
|
|
|
|
data-tailleLot="{{tailleLot}}"
|
|
|
|
data-quantiteNbLots="{{quantiteNbLots}}"
|
|
|
|
data-quantiteIllimite="{{#if quantiteIllimite}}true{{else}}false{{/if}}"
|
|
|
|
data-prixLot="{{prixLot}}">
|
|
|
|
{{#if (eq prixLot 0)}}Prendre{{else}}Acheter{{/if}}</a>
|
2021-05-07 17:27:02 +02:00
|
|
|
</span>
|
2021-10-30 00:41:55 +02:00
|
|
|
{{/if}}
|
2021-05-07 17:27:02 +02:00
|
|
|
</div>
|