59 lines
1.3 KiB
Handlebars

{{#> main}}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uppy/4.12.2/uppy.css"
integrity="sha512-qq4Nq6Mq4qiWfvYyGQQ6qiTPdMthW8vrJO+x8AjxDZN5/Ii+ShNRG+UnVQqInXou2xoH2w8QQayr850KopSH5g=="
crossorigin="anonymous" referrerpolicy="no-referrer">
<header class="container">
{{> navbar }}
</header>
<main class="container pico">
{{#each info}}
<article id="article">
<p>
{{{this}}}
</p>
</article>
{{/each}}
<section id="tables">
<h2>Uploads</h2>
<div class="overflow-auto">
<table class="striped">
<thead>
<tr>
<th>Upload ID</th>
<th>User</th>
<th>Segments</th>
<th>Stream Date</th>
<th>Notes</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{{#each uploads}}
<tr>
<td><a href="/uploads/{{this.id}}">{{this.id}}</a></td>
<td>{{{identicon this.userId 24}}}</td>
<td>{{#each this.segmentKeys}}{{this.name}}{{#unless @last}}, {{/unless}}{{/each}}</td>
<td>{{formatDate this.streamDate}}</td>
<td>{{notes}}</td>
<td>{{status}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</section>
{{>footer}}
</main>
{{/main}}