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_catalogs.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_catalogs.inc.php')
-rw-r--r-- | templates/show_catalogs.inc.php | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/templates/show_catalogs.inc.php b/templates/show_catalogs.inc.php index b8b6173e..9174838c 100644 --- a/templates/show_catalogs.inc.php +++ b/templates/show_catalogs.inc.php @@ -20,20 +20,20 @@ */ ?> <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> -<table class="tabledata" cellspacing="0" cellpadding="0"> +<table class="tabledata" cellpadding="0" cellspacing="0"> <colgroup> - <col id="br_catalog" /> - <col id="br_path" /> - <col id="br_lastverify" /> - <col id="br_lastadd" /> - <col id="br_action" /> + <col id="col_catalog" /> + <col id="col_path" /> + <col id="col_lastverify" /> + <col id="col_lastadd" /> + <col id="col_action" /> </colgroup> -<tr class="table-header th-top"> - <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 class="th-top"> + <th class="cel_catalog"><?php echo _('Name'); ?></th> + <th class="cel_path"><?php echo _('Path'); ?></th> + <th class="cel_lastverify"><?php echo _('Last Verify'); ?></th> + <th class="cel_lastadd"><?php echo _('Last Add'); ?></th> + <th class="cel_action"><?php echo _('Actions'); ?></th> </tr> <?php foreach ($object_ids as $catalog_id) { @@ -44,18 +44,11 @@ <?php require Config::get('prefix') . '/templates/show_catalog_row.inc.php'; ?> </tr> <?php } ?> -<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> <tr class="<?php echo flip_class(); ?>"> <td colspan="3"> </td> - <td align="right" colspan="2"> + <td class="cel_action" colspan="2"> <a href="<?php echo Config::get('web_path'); ?>/admin/catalog.php?action=gather_album_art"><?php echo _('Gather All Art'); ?></a> | <a href="<?php echo Config::get('web_path'); ?>/admin/catalog.php?action=add_to_all_catalogs"><?php echo _('Add to All'); ?></a> | <a href="<?php echo Config::get('web_path'); ?>/admin/catalog.php?action=update_all_catalogs"><?php echo _('Verify All'); ?></a> @@ -63,5 +56,12 @@ | <a href="<?php echo Config::get('web_path'); ?>/admin/catalog.php?action=full_service"><?php echo _('Update All'); ?></a> </td> </tr> +<tr class="th-bottom"> + <th class="cel_catalog"><?php echo _('Name'); ?></th> + <th class="cel_path"><?php echo _('Path'); ?></th> + <th class="cel_lastverify"><?php echo _('Last Verify'); ?></th> + <th class="cel_lastadd"><?php echo _('Last Add'); ?></th> + <th class="cel_action"><?php echo _('Actions'); ?></th> +</tr> </table> <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> |