initial commit

This commit is contained in:
hybris 2018-12-28 03:27:34 +01:00
commit e439b6c309
21 changed files with 17722 additions and 0 deletions

27
pages/playlists.html Normal file
View file

@ -0,0 +1,27 @@
{{define "playlists"}}
<html>
{{template "head"}}
<body>
<form method="post" name="submitDownloadQueue" action="http://localhost:8088/submitDownloadQueue">
<input type="submit">
<table class="overview" cellspacing="0">
<tr class ="overview">
<th class="overview">ID</th>
<th class="overview">Name</th>
<th class="overview">Owner</th>
<th class="overview"></th>
</tr>
{{range .Items}}
<tr class="overview">
<td>{{.ID}}</td>
<td>{{.Name}}</td>
<td>{{.Owner}}</td>
<td><input type="checkbox" id="ID_{{.ID}}" name="name_{{.ID}}" value="value_{{.ID}}" checked></td>
</tr>
{{end}}
</table>
</form>
</body>
</html>
{{end}}