summaryrefslogtreecommitdiffstats
path: root/templates/show_genre.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-26 07:52:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-26 07:52:05 +0000
commitcff8e731529103c63da1c2ef8e3dd0b91686b1c2 (patch)
tree3574642cbed6bdec1ca93f77d309cf941a6fa909 /templates/show_genre.inc.php
parent3ccf8570aa6c2070e15bcd03fa0fa0351a80fba5 (diff)
downloadampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.gz
ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.bz2
ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.zip
fixed acls and improved the classic theme a little more
Diffstat (limited to 'templates/show_genre.inc.php')
-rw-r--r--templates/show_genre.inc.php15
1 files changed, 5 insertions, 10 deletions
diff --git a/templates/show_genre.inc.php b/templates/show_genre.inc.php
index 6f9db26f..5e9466d9 100644
--- a/templates/show_genre.inc.php
+++ b/templates/show_genre.inc.php
@@ -26,19 +26,14 @@
*/
$web_path = conf('web_path');
?>
-<table class="text-box">
-<tr>
- <td>
- <span class="header1"><?php echo _("Viewing") . " " . $genre->name . " " . _("Genre"); ?></span><br />
+<?php show_box_top(_('Viewing') . " " . $genre->name . " " . _('Genre')); ?>
[<?php echo $genre->get_album_count(); ?>]
<a href="<?php echo $web_path; ?>/genre.php?action=show_albums&amp;genre_id=<?php echo $genre->id; ?>">
- <?php echo _("Albums"); ?></a><br />
+ <?php echo _('Albums'); ?></a><br />
[<?php echo $genre->get_artist_count(); ?>]
<a href="<?php echo $web_path; ?>/genre.php?action=show_artists&amp;genre_id=<?php echo $genre->id; ?>">
- <?php echo _("Artists"); ?></a><br />
+ <?php echo _('Artists'); ?></a><br />
[<?php echo $genre->get_song_count(); ?>]
<a href="<?php echo $web_path; ?>/genre.php?action=show_songs&amp;genre_id=<?php echo $genre->id; ?>">
- <?php echo _("Songs"); ?></a><br />
- </td>
-</tr>
-</table>
+ <?php echo _('Songs'); ?></a><br />
+<?php show_box_bottom(); ?>