tvl-depot/public/series.tmpl.html
2019-11-27 11:41:45 +01:00

16 lines
No EOL
353 B
HTML

{{ define "series" }}
<table class="table table-sm table-hover" id="region-queue">
<thead class="thead-light">
<tr>
<th scope="col">Owner</th>
<th scope="col">Changeset</th>
<th scope="col">Flags</th>
</tr>
</thead>
<tbody>
{{ range $serie := . }}
{{ block "serie" $serie }}{{ end }}
{{ end }}
</tbody>
</table>
{{ end }}