about summary refs log blame commit diff
path: root/public/series.tmpl.html
blob: 3a34f4c4a1090bc00879011dc212a1348fcac982 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                            
{{ 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 }}