59f97332b3
Imported from github/tvlfyi/gerrit-queue, originally from github/tweag/gerrit-queue but that upstream is unmaintained. git-subtree-dir: third_party/gerrit-queue git-subtree-mainline:ff10b7ab83
git-subtree-split:24f5a642af
Change-Id: I307cc38185ab9e25eb102c95096298a150ae13a2
19 lines
No EOL
467 B
HTML
19 lines
No EOL
467 B
HTML
{{ define "serie" }}
|
|
<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>
|
|
<tr>
|
|
<td colspan="3" class="table-success">Serie with {{ len .ChangeSets }} changes</td>
|
|
</tr>
|
|
{{ range $changeset := .ChangeSets }}
|
|
{{ block "changeset" $changeset }}{{ end }}
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{ end }} |