27 lines
690 B
PHTML
27 lines
690 B
PHTML
<div id="dashboard">
|
|
<h2>Liste des commandes</h2>
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<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>login</b></th>
|
|
<th><b>Reférence ciblage</b></th>
|
|
<th><b>Fichier</b></th>
|
|
</tr>
|
|
<?php foreach($this->commandes as $item): ?>
|
|
<tr>
|
|
<td><?=$item['dateAdded']?></td>
|
|
<td><?=$item['commandeReference']?></td>
|
|
<td><?=$item['nbLigneTotales']?></td>
|
|
<td><?=$item['uniteInsee']?></td>
|
|
<td><?=$item['login']?></td>
|
|
<td><?=$item['critereReference']?></td>
|
|
<td><?=$item['fichier']?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|