]> code.octet-stream.net Git - broadcaster/blob - server/templates/files.html
e2054720fc7fee44b98bf653d3938e067af7fa9e
[broadcaster] / server / templates / files.html
1
2 <h1>Audio File Management</h1>
3 <p>All files can be downloaded from the <a href="/file-downloads/">public file listing</a>.</p>
4 <table>
5 {{range .Files}}
6 <tr>
7 <td><b>{{.Name}}</b></td>
8 <td><form action="/files/delete" method="POST"><input type="hidden" name="filename" value="{{.Name}}"><input type="submit" value="Delete"></form></td>
9 </tr>
10 {{end}}
11 </table>
12 <h2>Upload New File</h2>
13 <p>
14 <form action="/files/upload" method="post" enctype="multipart/form-data">
15 <input type="file" name="file">
16 <input type="submit" value="Upload">
17 </form>
18 </p>