aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-02-13 11:18:30 +0800
committerRunxi Yu <me@runxiyu.org>2025-02-13 11:18:30 +0800
commit1e0044ea1f612a0038067bd03adf4e519b34c57b (patch)
tree917c8afc7d33fd1e4542959aca2eababe2ae1997 /templates
parentrepo_tree_file: Add padding (diff)
downloadforge-1e0044ea1f612a0038067bd03adf4e519b34c57b.tar.gz
forge-1e0044ea1f612a0038067bd03adf4e519b34c57b.tar.zst
forge-1e0044ea1f612a0038067bd03adf4e519b34c57b.zip
group_repos: Fix table rows
Diffstat (limited to 'templates')
-rw-r--r--templates/group_repos.html.tmpl14
1 files changed, 8 insertions, 6 deletions
diff --git a/templates/group_repos.html.tmpl b/templates/group_repos.html.tmpl
index 3166565..2d0b7d9 100644
--- a/templates/group_repos.html.tmpl
+++ b/templates/group_repos.html.tmpl
@@ -16,12 +16,14 @@
</thead>
<tbody>
{{- range .repos }}
- <td>
- <a href="{{ .Name }}/">{{ .Name }}</a>
- </td>
- <td>
- {{ .Description }}
- </td>
+ <tr>
+ <td>
+ <a href="{{ .Name }}/">{{ .Name }}</a>
+ </td>
+ <td>
+ {{ .Description }}
+ </td>
+ </tr>
{{- end }}
</tbody>
</table>