42 lines
845 B
PHTML
42 lines
845 B
PHTML
<div id="center">
|
|
<h1>TARIFS</h1>
|
|
<div class="paragraph">
|
|
<a href="<?=$this->url(array('controller'=>'dashboard','action'=>'tarif','idClient'=>$this->idClient),null,true)?>">Créer un tarifs</a>
|
|
</div>
|
|
|
|
<h2>Liste des tarifs</h2>
|
|
<div class="paragraph">
|
|
<?php if(count($this->tarifs->item)>0) {?>
|
|
<table>
|
|
<tr>
|
|
<th>Log</th>
|
|
<th>Service</th>
|
|
<th>type</th>
|
|
<th>Prix unitaire</th>
|
|
<th>Limit</th>
|
|
<th>Date de début</th>
|
|
<th>Durée</th>
|
|
<th>Dédoublonnage</th>
|
|
</tr>
|
|
<?php foreach ( $this->tarifs->item as $tarif ) {?>
|
|
<tr>
|
|
<td><?=$tarif->log?></td>
|
|
<td><?=$tarif->service?></td>
|
|
<td><?=$tarif->type?></td>
|
|
<td><?=$tarif->priceUnit?></td>
|
|
<td><?=$tarif->limit?></td>
|
|
<td><?=$tarif->date?></td>
|
|
<td><?=$tarif->duree?></td>
|
|
<td><?=$tarif->doublon?></td>
|
|
<td>
|
|
</td>
|
|
</tr>
|
|
<?php }?>
|
|
</table>
|
|
<?php } else {?>
|
|
Aucun tarif défini.
|
|
<?php }?>
|
|
|
|
</div>
|
|
|
|
</div>
|