initial commit
This commit is contained in:
commit
e439b6c309
21 changed files with 17722 additions and 0 deletions
6
pages/head.html
Normal file
6
pages/head.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
{{define "head"}}
|
||||
<head>
|
||||
<title>freedom - for your music</title>
|
||||
<link href="http://localhost:8088/static/tables.css" type="text/css" rel="stylesheet" />
|
||||
</head>
|
||||
{{end}}
|
27
pages/playlists.html
Normal file
27
pages/playlists.html
Normal 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}}
|
Loading…
Add table
Add a link
Reference in a new issue