mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-24 03:49:14 -05:00
Added rename playlist functionality. (click wait click on a playlist, type new name hit return) WARNING this will remove the smart playlist spec, use it only on static playlists (which you can't even add through the web interface)
91 lines
2.2 KiB
HTML
91 lines
2.2 KiB
HTML
@include hdr.html@
|
|
<style type="text/css">
|
|
#genre_div select, #artist_div select, #album_div select {
|
|
font: icon;
|
|
width: 30ex;
|
|
}
|
|
#source_div select {
|
|
font: icon;
|
|
width: 25ex;
|
|
}
|
|
#songs th {
|
|
text-align: center;
|
|
}
|
|
#songs_data td {
|
|
text-align: left;
|
|
}
|
|
#genre_div, #artist_div, #album_div {
|
|
float: left;
|
|
padding-left: 2ex;
|
|
}
|
|
#search_div {
|
|
float: right;
|
|
}
|
|
#source_div {
|
|
float: left;
|
|
clear: both;
|
|
}
|
|
#songs_div {
|
|
float: left;
|
|
padding-left: 2ex;
|
|
padding-top: 1ex;
|
|
}
|
|
#edit_playlist_name {
|
|
position: absolute;
|
|
font: icon;
|
|
width: 25ex;
|
|
display: none;
|
|
}
|
|
</style>
|
|
<div id="search_div">
|
|
<label for="search">search</label>
|
|
<input type="text" name="search" id="search" size="30" title="search songs, artists, albums, genres" />
|
|
</div>
|
|
<div style="clear: both;"><!-- buggy IE div --></div>
|
|
<div id="source_div">
|
|
<label for="source">Source<br /></label>
|
|
<select id="source" name="select" size="20">
|
|
|
|
<option value="1">Library</option>
|
|
</select><br />
|
|
<input type="text" id="edit_playlist_name" value="" />
|
|
<div id="busymsg" style="text-align:center;color:red; visibility: hidden;">Busy ...</div>
|
|
<a href="javascript:add()">Add static playlist</a>
|
|
</div>
|
|
<div id="genre_div">
|
|
Genre<br />
|
|
|
|
<select id="genres" name="select" multiple="multiple" size="15">
|
|
<option value="all">all</option>
|
|
</select>
|
|
</div>
|
|
<div id="artist_div">
|
|
Artist<br />
|
|
<select id="artists" name="select" multiple="multiple" size="15">
|
|
<option value="all">all</option>
|
|
</select>
|
|
</div>
|
|
<div id="album_div">
|
|
Album<br />
|
|
<select id="albums" name="select" multiple="multiple" size="15">
|
|
<option value="all">all</option>
|
|
</select>
|
|
</div>
|
|
<div id="songs_div" style="float: left; width:549px;">
|
|
<table id="songs" style="width:530px;" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<th style="width: 140px;">Song</th>
|
|
<th style="width: 50px;">Time</th>
|
|
<th style="width: 120px;">Artist</th>
|
|
<th style="width: 120px;">Album</th>
|
|
<th style="width: 100px;">Genre</th>
|
|
|
|
</tr>
|
|
</table>
|
|
<div style="height: 400px; overflow: auto; width: 549px;">
|
|
<table id="songs_data" style="width:530px;" border="0" cellspacing="0" cellpadding="0">
|
|
<tr><td>hej</td><td></td><td></td><td></td><td></td></tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@include ftr.html@ |