30 lines
442 B
PHTML
Raw Normal View History

2012-01-15 17:43:37 +00:00
<div>
<?php if (count($this->profils)>0) {?>
<table>
<thead>
2012-01-19 11:23:51 +00:00
<tr>
<th>Référence</th>
<th>Action</th>
</tr>
2012-01-15 17:43:37 +00:00
</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'=>'create'))?>">Créer un nouveau profil</a>
2012-01-15 17:43:37 +00:00
</p>