owntone-server/admin-root/playlist.html

56 lines
928 B
HTML
Raw Normal View History

@include hdr.html@
<table>
<tr>
<td valign="top">
Source<br />
<select id="source" name="select" size="20">
<option value="1">Library</option>
</select>
</td>
<td valign="top">
<table id="browse">
<tr>
<td>
Genre<br />
<select id="genre" name="select" size="10">
</select>
</td>
<td>
Artist<br />
<select id="artist" name="select" size="10">
</select>
</td>
<td>
Album<br />
<select id="album" name="select" size="10">
</select>
</td>
</tr>
</table>
<div class="" style="break: both;">
<table id="songs" class="mytable" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>Song</th>
<th>Time</th>
<th>Artist</th>
<th>Album</th>
<th>Genre</th>
</tr>
</thead>
<tbody class="mytbody">
<tr><td></td><td></td><td></td><td></td><td></td></tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
@include ftr.html@