{{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}}