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