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_artist_row.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_artist_row.inc.php')
-rw-r--r-- | templates/show_artist_row.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_artist_row.inc.php b/templates/show_artist_row.inc.php index ab5ac563..e20ccfd9 100644 --- a/templates/show_artist_row.inc.php +++ b/templates/show_artist_row.inc.php @@ -19,14 +19,14 @@ */ ?> -<td> +<td class="cel_add"> <?php echo Ajax::button('?action=basket&type=artist&id=' . $artist->id,'add',_('Add'),'add_artist_' . $artist->id); ?> <?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random',_('Random'),'random_artist_' . $artist->id); ?> </td> -<td><?php echo $artist->f_name_link; ?></td> -<td><?php echo $artist->songs; ?></td> -<td><?php echo $artist->albums; ?></td> -<td> +<td class="cel_artist"><?php echo $artist->f_name_link; ?></td> +<td class="cel_songs"><?php echo $artist->songs; ?></td> +<td class="cel_albums"><?php echo $artist->albums; ?></td> +<td class="cel_action"> <?php if (Access::check_function('batch_download')) { ?> <a href="<?php echo Config::get('web_path'); ?>/batch.php?action=artist&id=<?php echo $artist->id; ?>"> <?php echo get_user_icon('batch_download','',_('Batch Download')); ?> |