30 lines
460 B
PHTML
Raw Normal View History

2012-01-15 17:43:37 +00:00
<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>
2012-01-19 08:19:02 +00:00
<td></td>
2012-01-15 17:43:37 +00:00
</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>