diff options
Diffstat (limited to 'templates/show_catalogs.inc.php')
-rw-r--r-- | templates/show_catalogs.inc.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/show_catalogs.inc.php b/templates/show_catalogs.inc.php index c9f8cedd..86ab877e 100644 --- a/templates/show_catalogs.inc.php +++ b/templates/show_catalogs.inc.php @@ -1,5 +1,5 @@ <?php -/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/* vim:set softtabstop=4 shiftwidth=4 expandtab: */ /** * * LICENSE: GNU General Public License, version 2 (GPLv2) @@ -31,36 +31,36 @@ <col id="col_action" /> </colgroup> <tr class="th-top"> - <th class="cel_catalog"><?php echo T_('Name'); ?></th> - <th class="cel_path"><?php echo T_('Path'); ?></th> - <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th> - <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th> - <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th> - <th class="cel_action"><?php echo T_('Actions'); ?></th> + <th class="cel_catalog"><?php echo T_('Name'); ?></th> + <th class="cel_path"><?php echo T_('Path'); ?></th> + <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th> + <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th> + <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th> + <th class="cel_action"><?php echo T_('Actions'); ?></th> </tr> <?php - foreach ($object_ids as $catalog_id) { - $catalog = new Catalog($catalog_id); - $catalog->format(); + foreach ($object_ids as $catalog_id) { + $catalog = new Catalog($catalog_id); + $catalog->format(); ?> <tr class="<?php echo UI::flip_class(); ?>" id="catalog_<?php echo $catalog->id; ?>"> - <?php require Config::get('prefix') . '/templates/show_catalog_row.inc.php'; ?> + <?php require Config::get('prefix') . '/templates/show_catalog_row.inc.php'; ?> </tr> <?php } ?> <tr class="<?php echo UI::flip_class(); ?>"> <td colspan="6"> <?php if (!count($object_ids)) { ?> - <span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span> + <span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span> <?php } ?> </td> </tr> <tr class="th-bottom"> - <th class="cel_catalog"><?php echo T_('Name'); ?></th> - <th class="cel_path"><?php echo T_('Path'); ?></th> - <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th> - <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th> - <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th> - <th class="cel_action"><?php echo T_('Actions'); ?></th> + <th class="cel_catalog"><?php echo T_('Name'); ?></th> + <th class="cel_path"><?php echo T_('Path'); ?></th> + <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th> + <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th> + <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th> + <th class="cel_action"><?php echo T_('Actions'); ?></th> </tr> </table> <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> |