diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-09 06:17:37 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-09 06:17:37 +0000 |
commit | 796c2692d0cfa4641e0c47700371c24a01412ed1 (patch) | |
tree | 33d8921798b9603c177a0dd2a025e09f3f32691f /templates/show_playlists.inc.php | |
parent | 905d434c669b634c6e070c60811a4a5ecfc1c67a (diff) | |
download | ampache-796c2692d0cfa4641e0c47700371c24a01412ed1.tar.gz ampache-796c2692d0cfa4641e0c47700371c24a01412ed1.tar.bz2 ampache-796c2692d0cfa4641e0c47700371c24a01412ed1.zip |
fixed lower paging horn, tweaked css for page-a-nation, added paging to playlists, genres and radio strations, added detection of purchase urls to find missing tracks on albums
Diffstat (limited to 'templates/show_playlists.inc.php')
-rw-r--r-- | templates/show_playlists.inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/show_playlists.inc.php b/templates/show_playlists.inc.php index 4b925fe8..81b7b22d 100644 --- a/templates/show_playlists.inc.php +++ b/templates/show_playlists.inc.php @@ -21,6 +21,11 @@ */ ?> <table class="tabledata" cellspacing="0" cellpadding="0" border="0"> <!-- Playlist Table --> +<tr> + <td colspan="5"> + <?php require Config::get('prefix') . '/templates/list_header.inc.php' ?> + </td> +</tr> <tr class="table-header"> <th> </th> <th><?php echo _('Playlist Name'); ?></th> @@ -38,4 +43,9 @@ foreach ($object_ids as $playlist_id) { <?php require Config::get('prefix') . '/templates/show_playlist_row.inc.php'; ?> </tr> <?php } // end foreach ($playlists as $playlist) ?> +<tr> + <td colspan="5"> + <?php require Config::get('prefix') . '/templates/list_header.inc.php' ?> + </td> +</tr> </table> |