089e551b72
the series block will get reused, and we don't want the same ID to appear twice.
16 lines
No EOL
335 B
HTML
16 lines
No EOL
335 B
HTML
{{ 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 }} |