summaryrefslogtreecommitdiffstats
path: root/templates/show_catalogs.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_catalogs.inc.php')
-rw-r--r--templates/show_catalogs.inc.php26
1 files changed, 16 insertions, 10 deletions
diff --git a/templates/show_catalogs.inc.php b/templates/show_catalogs.inc.php
index fe6e3e7d..7a0a48cd 100644
--- a/templates/show_catalogs.inc.php
+++ b/templates/show_catalogs.inc.php
@@ -19,13 +19,16 @@
*/
?>
+<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>
<table class="tabledata" cellspacing="0" cellpadding="0">
-<tr>
- <td colspan="5">
- <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>
- </td>
-</tr>
-<tr class="table-header">
+<colgroup>
+ <col id="br_catalog" />
+ <col id="br_path" />
+ <col id="br_lastverify" />
+ <col id="br_lastadd" />
+ <col id="br_action" />
+</colgroup>
+<tr class="table-header th-top">
<th><?php echo _('Name'); ?></th>
<th><?php echo _('Path'); ?></th>
<th><?php echo _('Last Verify'); ?></th>
@@ -41,9 +44,12 @@
<?php require Config::get('prefix') . '/templates/show_catalog_row.inc.php'; ?>
</tr>
<?php } ?>
-<tr>
- <td colspan="5">
- <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>
- </td>
+<tr class="table-header th-bottom">
+ <th><?php echo _('Name'); ?></th>
+ <th><?php echo _('Path'); ?></th>
+ <th><?php echo _('Last Verify'); ?></th>
+ <th><?php echo _('Last Add'); ?></th>
+ <th><?php echo _('Actions'); ?></th>
</tr>
</table>
+<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>