diff options
author | spocky <spocky@ampache> | 2007-10-24 21:15:58 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-10-24 21:15:58 +0000 |
commit | e855988af2850d8d8105b56bc0ce9eae8b7d9dc0 (patch) | |
tree | 9e05a256144165aca01e6bfe9a02bd2d81dbdfb4 /templates/show_admin_tools.inc.php | |
parent | 06a5efcc717cd28ea69bd75f11063c51ee455b82 (diff) | |
download | ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.tar.gz ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.tar.bz2 ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.zip |
renamed a few files (missing php extension)
updated most of the tables so that every column is independently customizable by css rules
Diffstat (limited to 'templates/show_admin_tools.inc.php')
-rw-r--r-- | templates/show_admin_tools.inc.php | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/templates/show_admin_tools.inc.php b/templates/show_admin_tools.inc.php index 02237e59..b1e3e9e4 100644 --- a/templates/show_admin_tools.inc.php +++ b/templates/show_admin_tools.inc.php @@ -25,18 +25,22 @@ $catalogs = Catalog::get_catalogs(); ?> <?php show_box_top(_('Catalogs')); ?> <table class="tabledata" cellpadding="0" cellspacing="0"> -<tr class="table-header"> - <th><?php echo _('Name'); ?></th> - <th align="center"><?php echo _('Action'); ?></th> +<colgroup> + <col id="col_name" /> + <col id="col_action" /> +</colgroup> +<tr class="th-top"> + <th class="cel_name"><?php echo _('Name'); ?></th> + <th class="cel_action"><?php echo _('Action'); ?></th> </tr> <?php foreach ($catalogs as $catalog) { ?> <tr class="<?php echo flip_class(); ?>"> - <td> + <td class="cel_name"> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=show_customize_catalog&catalog_id=<?php echo $catalog->id; ?>"> <?php echo scrub_out($catalog->name); ?></a> (<?php echo scrub_out($catalog->path); ?>) </td> - <td> + <td class="cel_action"> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=add_to_catalog&catalogs[]=<?php echo $catalog->id; ?>"> <?php echo _('Add'); ?></a> | <a href="<?php echo $web_path; ?>/admin/catalog.php?action=update_catalog&catalogs[]=<?php echo $catalog->id; ?>"> @@ -65,6 +69,10 @@ $catalogs = Catalog::get_catalogs(); </td> </tr> <?php } // end if no catalogs ?> +<tr class="th-bottom"> + <th class="cel_name"><?php echo _('Name'); ?></th> + <th class="cel_action"><?php echo _('Action'); ?></th> +</tr> </table> <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=clean_all_catalogs"><?php echo _('Clean All'); ?></a> |