-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgeslib_report.tpl.php
More file actions
28 lines (25 loc) · 896 Bytes
/
geslib_report.tpl.php
File metadata and controls
28 lines (25 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<table>
<tr>
<th><?php print t("Geslib File"); ?></th>
<th><?php print t("Element"); ?></th>
<th><?php print t("Starting Date"); ?></th>
<th><?php print t("Ending Date"); ?></th>
<th><?php print "#"; ?></th>
<th><?php print t("Status"); ?></th>
<th> </th>
</tr>
<?php
global $base_path;
foreach($items as $record) {
print '<tr id="geslib_file_' . $record->id . '">';
print ' <td>' . $record->imported_file . '</td>';
print ' <td>' . $record->component . '</td>';
print ' <td>' . date('m/d/Y H:i:s', $record->start_date) . '</td>';
print ' <td>' . date('m/d/Y H:i:s', $record->end_date) . '</td>';
print ' <td>' . $record->count . '</td>';
print ' <td>' . $record->status . '</td>';
print ' <td><a href="' . $base_path . 'geslib/delete_log/' . $record->id . '">Delete</a></td>';
print '</tr>';
}
?>
</table>