Ajout directives de style
FossilOrigin-Name: 1b127048e020c713814f73d04cbedf86c74127dda40fa1f5d8bb665e472cd56a
This commit is contained in:
parent
31a0f8fdc3
commit
c2a3a77f24
4 changed files with 47 additions and 18 deletions
|
|
@ -84,21 +84,29 @@
|
|||
<?php $idVersements = $versement->idTarif."_".$versement->idUser; ?>
|
||||
<h3>Versements de {$versement.Nom} : <span id="total_{$idVersements}">0,00 €</span></h3>
|
||||
<fieldset class="versements" id="versements_{$idVersements}">
|
||||
<input class="check_{$idVersements}"
|
||||
type="checkbox" id="check_{$idVersements}"
|
||||
<input
|
||||
type="checkbox"
|
||||
class="check_{$idVersements}"
|
||||
id="check_{$idVersements}"
|
||||
onclick="cocherDecocherPersonne(check_{$idVersements}, total_{$idVersements})" />
|
||||
<label for="check_{$idVersements}" style="font-weight:bold;">Cliquer ici pour cocher toutes les lignes</label><br />
|
||||
<label for="check_{$idVersements}" style="font-weight:bold;">Cliquer pour cocher toutes les lignes</label>
|
||||
<br />
|
||||
<hr>
|
||||
<?php $currentUser = $versement->idUser; ?>
|
||||
{/if}
|
||||
{* afficher les infos du versement de la personne*}
|
||||
<input class="check_{$idVersements}" type="checkbox"
|
||||
<div {if $rang%2==0}class="pair"{else}class="impair"{/if}>
|
||||
<input
|
||||
type="checkbox"
|
||||
class="check_{$idVersements}"
|
||||
id="check_{$idVersements}_{$rang}"
|
||||
name="selected[]" value={$rang}
|
||||
name="selected[]"
|
||||
value={$rang}
|
||||
onclick="cocherDecocherVersement(check_{$idVersements}_{$rang}, total_{$idVersements})" />
|
||||
<label for=check_{$idVersements}_{$rang}></label>
|
||||
<span class="montant">{$versement.Versement}</span>
|
||||
<span>{$versement.Date|date_format:"%d/%m/%Y"}</span><br />
|
||||
<span>{$versement.Date|date_format:"%d/%m/%Y"}</span>
|
||||
</div>
|
||||
{/if}
|
||||
{/foreach} {* Itération sur les versements *}
|
||||
</fieldset>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue