27 lines
635 B
PHTML
27 lines
635 B
PHTML
<div id="dashboard">
|
|
<h2>Liste des ciblages</h2>
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<th><b>Id</b></th>
|
|
<th><b>Date de création</b></th>
|
|
<th><b>Référence</b></th>
|
|
<th><b>Résultat</b></th>
|
|
<th><b>Insee</b></th>
|
|
<th><b>Actions</b></th>
|
|
</tr>
|
|
<?php foreach($this->comptages as $comptage): ?>
|
|
<tr>
|
|
<td><?=$comptage['idDefinition']?></td>
|
|
<td><?=$comptage['dateAjout']?></td>
|
|
<td><?=$comptage['reference']?></td>
|
|
<td><?=$comptage['resultat']?></td>
|
|
<td><?=$comptage['uniteInsee']?></td>
|
|
<td>
|
|
<a href="">Actualiser</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|