about summary refs log blame commit diff
path: root/public/series.tmpl.html
blob: 7e5ffd49c79a0ef15cfa65b48a1586b10afffb8c (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">
<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 }}