diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-13 11:18:30 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-13 11:18:30 +0800 |
commit | 1e0044ea1f612a0038067bd03adf4e519b34c57b (patch) | |
tree | 917c8afc7d33fd1e4542959aca2eababe2ae1997 | |
parent | repo_tree_file: Add padding (diff) | |
download | forge-1e0044ea1f612a0038067bd03adf4e519b34c57b.tar.gz forge-1e0044ea1f612a0038067bd03adf4e519b34c57b.tar.zst forge-1e0044ea1f612a0038067bd03adf4e519b34c57b.zip |
group_repos: Fix table rows
Diffstat (limited to '')
-rw-r--r-- | templates/group_repos.html.tmpl | 14 |
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> |