27 lines
635 B
PHTML
Raw Normal View History

2012-04-12 08:09:18 +00:00
<div id="dashboard">
2012-05-22 06:10:32 +00:00
<h2>Liste des ciblages</h2>
2012-04-12 08:09:18 +00:00
<div>
<table>
<tr>
<th><b>Id</b></th>
<th><b>Date de création</b></th>
2012-04-20 14:55:28 +00:00
<th><b>Référence</b></th>
2012-04-12 08:09:18 +00:00
<th><b>Résultat</b></th>
<th><b>Insee</b></th>
<th><b>Actions</b></th>
</tr>
<?php foreach($this->comptages as $comptage): ?>
<tr>
2012-05-16 15:52:34 +00:00
<td><?=$comptage['idDefinition']?></td>
<td><?=$comptage['dateAjout']?></td>
<td><?=$comptage['reference']?></td>
<td><?=$comptage['resultat']?></td>
<td><?=$comptage['uniteInsee']?></td>
2012-04-12 08:09:18 +00:00
<td>
<a href="">Actualiser</a>
</td>
2012-04-13 14:49:08 +00:00
</tr>
2012-04-12 08:09:18 +00:00
<?php endforeach; ?>
</table>
</div>
</div>