owntone-server/admin-root/smart.html

47 lines
1.0 KiB
HTML
Raw Normal View History

2005-06-19 23:18:16 -04:00
@include hdr.html@
<div class="stx">
2005-10-23 19:55:35 -04:00
<h2>Smart Playlists</h2>
<table width="400">
2005-11-01 18:55:20 -05:00
<thead><tr><th>ID</th><th>Playlist Name</th><th>Type</th><th>Action</th></tr></thead>
2005-06-19 23:18:16 -04:00
<tbody id="playlists">
</tbody>
</table>
2005-10-23 19:55:35 -04:00
<a href="javascript:pl_new();">Add new playlist</a>
2005-06-19 23:18:16 -04:00
<div id="pl_data">
</div>
2005-10-23 19:55:35 -04:00
<div id="pl_editor" style="display:none">
<h3>Playlist Spec</h3>
2005-11-01 18:55:20 -05:00
<form name="pl_form" action="">
<input type="hidden" name="playlist_id"/>
2005-10-23 19:55:35 -04:00
<table width="400">
<tr>
<th>Name</th>
2005-11-01 18:55:20 -05:00
<td><input type="text" name="playlist_name"/></td>
2005-10-23 19:55:35 -04:00
</tr>
<tr>
<th>Playlist Criteria</th>
<td><textarea rows="5" name="playlist_spec"></textarea></td>
</tr>
</table>
2005-11-01 18:55:20 -05:00
<input type="button" onclick="javascript:pl_update();" name="submit_button" value="Submit"/>
<input type="button" onclick="javascript:pl_cancel();" value="Cancel"/>
<input type="button" onclick="javascript:pl_popup('smartpopup.html');" value="Wizard"/>
2005-10-23 19:55:35 -04:00
</form>
</div>
<div id="pl_warning" class="message" style="display:none">
Error Messages Go here
</div>
2005-06-19 23:18:16 -04:00
</div>
@include ftr.html@