Slowly getting playlist editor in shape.

Still readonly, but clickable.
This commit is contained in:
Anders Betnér
2005-03-16 19:56:40 +00:00
parent 559a45503f
commit 5a17d65d98
4 changed files with 367 additions and 41 deletions

View File

@@ -1,5 +1,4 @@
@include hdr.html@
<h1>Playlist</h1>
<table>
<tr>
<td valign="top">
@@ -10,31 +9,32 @@
</td>
<td valign="top">
<table id="browse">
<tr>
<td>
Genre<br />
<select id="genre" name="select" size="10">
<option value="1">All genres</option>
</select>
</td>
<td>
Artist<br />
<select id="artist" name="select" size="10">
<option value="1">All artists</option>
</select>
</td>
<td>
Album<br />
<select id="album" name="select" size="10">
<option value="1">All albums</option>
</select>
</td>
</tr>
</table>
<div class="stx" style="break: both;">
<table id="songs" border="0" cellspacing="0" cellpadding="0">
<div class="" style="break: both;">
<table id="songs" class="mytable" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>Song</th>
@@ -44,7 +44,8 @@ Album<br />
<th>Genre</th>
</tr>
</thead>
<tbody>
<tbody class="mytbody">
<tr><td></td><td></td><td></td><td></td><td></td></tr>
</tbody>
</table>
</div>