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>
|
2012-04-06 09:08:13 +00:00
|
|
|
<td><a href="<?=$this->url(array('controller'=>'profil', 'action'=>'detail', 'id'=>$profil->id))?>"><?=$profil->reference?></a></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>
|
2012-03-13 15:18:57 +00:00
|
|
|
<a href="<?=$this->url(array('controller'=>'profil', 'action'=>'create'))?>">Créer un nouveau profil</a>
|
2012-01-15 17:43:37 +00:00
|
|
|
</p>
|
|
|
|
|