about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--public/serie.tmpl.html26
1 files changed, 17 insertions, 9 deletions
diff --git a/public/serie.tmpl.html b/public/serie.tmpl.html
index 8c653946ce7e..60f0c18113d7 100644
--- a/public/serie.tmpl.html
+++ b/public/serie.tmpl.html
@@ -1,11 +1,19 @@
 {{ define "serie" }}
-<tr>
-<td colspan="3" class="table-success">Serie with {{ len .ChangeSets }} changes</td>
-</tr>
-{{ range $changeset := .ChangeSets }}
-{{ block "changeset" $changeset }}{{ end }}
-{{ end }}
-<tr>
-<td colspan="3">&nbsp;</td>
-</tr>
+<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 }}
\ No newline at end of file