30 lines
677 B
PHTML
30 lines
677 B
PHTML
<div>
|
|
<h2>Gestion des profils</h2>
|
|
<?php if (count($this->profils)>0) {?>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Référence</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($this->profils as $profil) {?>
|
|
<tr>
|
|
<td><a href="<?=$this->url(array('controller'=>'profil', 'action'=>'detail', 'id'=>$profil->id))?>"><?=$profil->reference?></a></td>
|
|
<td><a href="<?=$this->url(array('controller'=>'profil', 'action'=>'create', 'id'=>$profil->id))?>">Edition</a></td>
|
|
</tr>
|
|
<?php }?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php } else {?>
|
|
Aucun profils d'enrichissement.
|
|
<?php }?>
|
|
</div>
|
|
|
|
<p>
|
|
<a href="<?=$this->url(array('controller'=>'profil', 'action'=>'create'))?>">Créer un nouveau profil</a>
|
|
</p>
|
|
|