diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
commit | ae70bce26c2f39da93c85a082602d58dcf13652e (patch) | |
tree | 0bf530733d44216846ad39f245bc238baf174cee /templates/show_admin_tools.inc.php | |
parent | cb12b4a8c948d901f6851a7eae032827b423704d (diff) | |
download | ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.gz ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.bz2 ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.zip |
more updates to the theme stuff
Diffstat (limited to 'templates/show_admin_tools.inc.php')
-rw-r--r-- | templates/show_admin_tools.inc.php | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/templates/show_admin_tools.inc.php b/templates/show_admin_tools.inc.php index b843feca..7c73fda2 100644 --- a/templates/show_admin_tools.inc.php +++ b/templates/show_admin_tools.inc.php @@ -25,10 +25,7 @@ $catalogs = $catalog->get_catalogs(); $users = $GLOBALS['user']->get_recent(10); ?> -<span class="header1"><?php echo _('Catalogs'); ?></span> -<div class="text-box"> -<div class="text-action"> -</div> +<?php show_box_top(_('Catalogs')); ?> <table border="0" cellpadding="0" cellspacing="0"> <tr class="table-header"> <th><?php echo _('Name'); ?></th> @@ -73,18 +70,16 @@ $users = $GLOBALS['user']->get_recent(10); <a href="<?php echo $web_path; ?>/admin/catalog.php?action=gather_album_art"><?php echo _('Gather Album Art'); ?></a> </div> -</div><br /> -<span class="header1"><?php echo _('Other Tools'); ?></span><br /> -<div class="text-box"> +<?php show_box_bottom(); ?> +<?php show_box_top(_('Other Tools')); ?> <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/duplicates.php"><?php echo _('Show Duplicate Songs'); ?></a> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=clear_now_playing"><?php echo _('Clear Now Playing'); ?></a> </div> -</div><br /> -<span class="header2"><?php echo _('User Activity'); ?></span><br /> -<div class="text-box"> +<?php show_box_bottom(); ?> +<?php show_box_top(_('User Activity')); ?> <?php require (conf('prefix') . '/templates/show_users_info.inc.php'); ?> <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/users.php"><?php echo _('Show All'); ?>...</a> </div> -</div> +<?php show_box_bottom(); ?> |