summaryrefslogtreecommitdiffstats
path: root/templates/show_artist_box.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-23 23:28:18 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-23 23:28:18 +0000
commit34238a29aade796f30911c567eace0e1518eb470 (patch)
tree4e0125bd53cc2f75f7a0536ea6479ec82e0ac0ce /templates/show_artist_box.inc.php
parent1d08ce31caa68f6da292493fa16432163cbbeddd (diff)
downloadampache-34238a29aade796f30911c567eace0e1518eb470.tar.gz
ampache-34238a29aade796f30911c567eace0e1518eb470.tar.bz2
ampache-34238a29aade796f30911c567eace0e1518eb470.zip
to keep infamys eyes from bleeding
Diffstat (limited to 'templates/show_artist_box.inc.php')
-rw-r--r--templates/show_artist_box.inc.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/templates/show_artist_box.inc.php b/templates/show_artist_box.inc.php
index 8ed59615..5dd31a9f 100644
--- a/templates/show_artist_box.inc.php
+++ b/templates/show_artist_box.inc.php
@@ -20,18 +20,18 @@
*/
$web_path = conf('web_path');
+$title = _('Albums by') . " " . $artist->full_name;
?>
-<div class="text-box">
- <span class="header1"><?php echo _('Albums by') . " " . $artist->full_name; ?></span>
- <br /><?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?>
- <ul class="text-action">
- <li><a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Show All Songs By") . " " . $artist->full_name; ?></a></li>
- <li><a href="<?php echo $web_path; ?>/song.php?action=artist&amp;artist_id=<?php echo $artist_id; ?>"><?php echo _("Play All Songs By") . " " . $artist->full_name; ?></a></li>
- <li><a href="<?php echo $web_path; ?>/song.php?action=artist_random&amp;artist_id=<?php echo $artist_id; ?>"><?php echo _("Play Random Songs By") . " " . $artist->full_name; ?></a></li>
- <?php if ($GLOBALS['user']->has_access('100')) { ?>
- <li><a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Update from tags"); ?></a></li>
- <li><a href="<?php echo $web_path; ?>/artists.php?action=show_rename&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Rename Artist"); ?></a></li>
- <li><a href="<?php echo $web_path; ?>/artists.php?action=show_similar&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Find duplicate artists"); ?></a></li>
- <?php } ?>
- </ul>
-</div>
+<?php require (conf('prefix') . '/templates/show_box_top.inc.php'); ?>
+<?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?>
+<strong><?php echo _('Actions'); ?>:</strong><br />
+&nbsp;&nbsp;<a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Show All Songs By") . " " . $artist->full_name; ?></a><br />
+&nbsp;&nbsp;<a href="<?php echo $web_path; ?>/song.php?action=artist&amp;artist_id=<?php echo $artist_id; ?>"><?php echo _("Play All Songs By") . " " . $artist->full_name; ?></a><br />
+&nbsp;&nbsp;<a href="<?php echo $web_path; ?>/song.php?action=artist_random&amp;artist_id=<?php echo $artist_id; ?>"><?php echo _("Play Random Songs By") . " " . $artist->full_name; ?></a><br />
+<?php if ($GLOBALS['user']->has_access('100')) { ?>
+ &nbsp;&nbsp;<a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Update from tags"); ?></a><br />
+ &nbsp;&nbsp;<a href="<?php echo $web_path; ?>/artists.php?action=show_rename&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Rename Artist"); ?></a><br />
+ &nbsp;&nbsp;<a href="<?php echo $web_path; ?>/artists.php?action=show_similar&amp;artist=<?php echo $artist_id; ?>"><?php echo _("Find duplicate artists"); ?></a><br />
+<?php } ?>
+<?php require (conf('prefix') . '/templates/show_box_bottom.inc.php'); ?>
+<?php unset($title); ?>