owntone-server/admin-root/playlist.html

72 lines
1.7 KiB
HTML
Raw Normal View History

@include hdr.html@
<style type="text/css">
select {
font: icon;
}
#songs th {
text-align: center;
}
#songs_data td {
text-align: left;
}
</style>
<table style="width:100%;">
<tr>
<td valign="top" style="width:20%;">
Source<br />
<select id="source" name="select" size="20">
<option value="1">Library</option>
</select>
<div id="busymsg" style="text-align:center;color:red; visibility: hidden;">Busy ...</div>
<a href="javascript:add()">Add static playlist</a>
</td>
<td valign="top" style="width:80%;" >
<table id="browse">
<tr>
<td style="width:30%;" >
Genre<br />
<select id="genres" name="select" multiple="multiple" size="15">
<option value="all">all</option>
</select>
</td>
<td style="width:35%;">
Artist<br />
<select id="artists" name="select" multiple="multiple" size="15">
<option value="all">all</option>
</select>
</td>
<td style="width:35%;">
Album<br />
<select id="albums" name="select" multiple="multiple" size="15">
<option value="all">all</option>
</select>
</td>
</tr>
</table>
<div style="clear: both; width:469px;">
<table id="songs" style="width:450px;" border="0" cellspacing="0" cellpadding="0">
<tr>
<th style="width: 100px;">Song</th>
<th style="width: 50px;">Time</th>
<th style="width: 100px;">Artist</th>
<th style="width: 100px;">Album</th>
<th style="width: 100px;">Genre</th>
</tr>
</table>
<div style="height: 400px; overflow: auto; width: 469px;">
<table id="songs_data" style="width:450px;" border="0" cellspacing="0" cellpadding="0">
<tr><td>hej</td><td></td><td></td><td></td><td></td></tr>
</table>
</div>
</div>
</td>
</tr>
</table>
@include ftr.html@