2012-10-17 07:52:44 +00:00

37 lines
776 B
PHTML

<div id="center">
<h1>Gestion des services du client (idClient)</h1>
<div class="paragraph">
<a href="<?=$this->url(array('controller'=>'dashboard','action'=>'service','idClient'=>$this->idClient),null,true)?>">
Créer un service</a>
</div>
<h2>Liste des services</h2>
<div class="paragraph">
<?php if(count($this->services->item)>0) {?>
<table>
<tr>
<th>Code</th>
<th>Nom</th>
<th>Logins</th>
</tr>
<?php foreach ( $this->services->item as $service ) {?>
<tr>
<td><?=$services->code?></td>
<td><?=$services->label?></td>
<td>
<?php if ( count($service->login->item)>0 ) {?>
<?php foreach ($services->login->item as $login) {?>
<?=$login?><br/>
<?php } ?>
<?php } ?>
</td>
</tr>
<?php }?>
</table>
<?php } else {?>
Aucun service défini.
<?php }?>
</div>
</div>