diff options
Diffstat (limited to 'apps/media/templates/playlist.php')
-rw-r--r-- | apps/media/templates/playlist.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/media/templates/playlist.php b/apps/media/templates/playlist.php new file mode 100644 index 00000000000..bdc6ef59bb0 --- /dev/null +++ b/apps/media/templates/playlist.php @@ -0,0 +1,30 @@ +<table id='playlist'> + <thead> + <tr> + <th class='name'><input id='selectAll' type='checkbox'>Name</th> + <th class='artist'>Artist</th> + <th class='album'>Album</th> + <th class='time'>Time</th> + <th class='plays'>Plays</th> + </tr> + </thead> + <tbody> + <tr> + <td> + The playlist is empty + </td> + </tr> + </tbody> + <tfoot> + <tr class='template'> + <td class='name'> + <input type='checkbox'> + <span></span> + </td> + <td class='artist'></td> + <td class='album'></td> + <td class='time'></td> + <td class='plays'></td> + </tr> + </tfoot> +</table>
\ No newline at end of file |