2009-05-11 15:48:50 +00:00
|
|
|
|
<?php
|
2009-05-14 09:49:31 +00:00
|
|
|
|
setDbConn('graydon');
|
2009-05-11 15:48:50 +00:00
|
|
|
|
$q = Doctrine_Query::create()
|
|
|
|
|
->from('Report r')
|
|
|
|
|
->orderBy('r.updated_at');
|
|
|
|
|
$tabReports = $q->Execute();
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Identifier</th>
|
|
|
|
|
<th>Nom</th>
|
|
|
|
|
<th>Rapport</th>
|
|
|
|
|
<th>Format</th>
|
|
|
|
|
<th>Mis <EFBFBD> jour le ...</th>
|
|
|
|
|
</tr>
|
|
|
|
|
<?php
|
|
|
|
|
foreach($tabReports as $report){
|
|
|
|
|
?>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?php print $report->identifier; ?></td>
|
|
|
|
|
<td><?php print $report->name; ?></td>
|
|
|
|
|
<td>T<EFBFBD>l<EFBFBD>charger le rapport</td>
|
|
|
|
|
<td><?php print $report->format; ?></td>
|
|
|
|
|
<td><?php print $report->updated_at; ?></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</table>
|