29 lines
No EOL
801 B
HTML
Executable file
29 lines
No EOL
801 B
HTML
Executable file
{{template "base" .}}
|
|
{{define "head"}}
|
|
{{end}}
|
|
{{define "content"}}
|
|
<table class="pure-table pure-table-horizontal pure-table-striped">
|
|
<caption>Streams</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>URL</th>
|
|
<th>Watches</th>
|
|
<th>Interval (ms)</th>
|
|
<th>Watch</th>
|
|
</tr>
|
|
</thead>
|
|
<tr>
|
|
<td colspan="5"><a href="/addStream">Add</a></td>
|
|
</tr>
|
|
{{range $streamName, $stream := .}}
|
|
<tr>
|
|
<td>{{ $stream.Name }}</td>
|
|
<td>{{ $stream.URL }} </td>
|
|
<td>{{ len $stream.WatchAreas }} </td>
|
|
<td>{{ $stream.Interval }}</td>
|
|
<td><a href="/?name={{ $stream.Name }}">Go</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{end}} |