]> code.octet-stream.net Git - broadcaster/blobdiff - server/templates/files.html
Make headings consistent in UI
[broadcaster] / server / templates / files.html
index c86c6ceb7cead75331175ba552e6067a0abb81f1..a07ce2cf8a5221cb6af57d173a2b707871b97d1f 100644 (file)
@@ -1,11 +1,15 @@
 
 
-      <h1>Files! List</h1>
+      <h1>Audio File Management</h1>
       <p>All files can be downloaded from the <a href="/file-downloads/">public file listing</a>.</p>
       <p>All files can be downloaded from the <a href="/file-downloads/">public file listing</a>.</p>
-      <ul>
+      <table class="listing" border="1">
+      <tr><th>Name</th><th></th></tr>
       {{range .Files}}
       {{range .Files}}
-        <li><b>{{.Name}}</b><form action="/files/delete" method="POST"><input type="hidden" name="filename" value="{{.Name}}"><input type="submit" value="Delete"></form></li>
+      <tr>
+        <td>{{.Name}}</td>
+        <td><form action="/files/delete" method="POST"><input type="hidden" name="filename" value="{{.Name}}"><input type="submit" value="Delete"></form></td>
+        </tr>
       {{end}}
       {{end}}
-      </ul>
+      </table>
       <h2>Upload New File</h2>
       <p>
       <form action="/files/upload" method="post" enctype="multipart/form-data">
       <h2>Upload New File</h2>
       <p>
       <form action="/files/upload" method="post" enctype="multipart/form-data">