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_info.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_info.inc.php')
-rw-r--r-- | templates/show_admin_info.inc.php | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/show_admin_info.inc.php b/templates/show_admin_info.inc.php index b0414611..459355fd 100644 --- a/templates/show_admin_info.inc.php +++ b/templates/show_admin_info.inc.php @@ -29,21 +29,19 @@ $total_flagged = $flag->get_total(); /* Disabled Information Gathering */ $catalog = new Catalog(); $songs = $catalog->get_disabled(10); - ?> -<span class="header1"><?php echo _('Information'); ?></span><br /> -<div class="text-box"> -<span class="header2"><?php echo _('Last Ten Flagged Records'); ?></span><br /> + +<?php show_box_top(_('Last Ten Flagged Records')); ?> <?php require (conf('prefix') . '/templates/show_flagged.inc.php'); ?> <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/flag.php?action=show_flagged"><?php echo _('Show All'); ?>...</a> </div> -</div><br /> -<span class="header2"><?php echo _('Disabled Songs'); ?></span><br /> -<div class="text-box"> +<?php show_box_bottom(); ?> + +<?php show_box_top(_('Disabled Songs')); ?> <!-- Show Last 10 Disabled Songs --> <?php require (conf('prefix') . '/templates/show_disabled_songs.inc'); ?> <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=show_disabled"><?php echo _('Show All'); ?>...</a> </div> -</div> +<?php show_box_bottom(); ?> |