diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-06 22:30:57 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-06 22:31:12 +0800 |
commit | c37d627b529fc8d03328fc77efc57b19ecd0e8f0 (patch) | |
tree | d3e532cf48afd5edd819027301891d2923ea43e3 /templates/_group_view.tmpl | |
parent | Update hosted forge links (diff) | |
download | forge-c37d627b529fc8d03328fc77efc57b19ecd0e8f0.tar.gz forge-c37d627b529fc8d03328fc77efc57b19ecd0e8f0.tar.zst forge-c37d627b529fc8d03328fc77efc57b19ecd0e8f0.zip |
*: Add column headers to tables
Diffstat (limited to '')
-rw-r--r-- | templates/_group_view.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/_group_view.tmpl b/templates/_group_view.tmpl index 4783162..7b11f22 100644 --- a/templates/_group_view.tmpl +++ b/templates/_group_view.tmpl @@ -9,6 +9,10 @@ <tr> <th colspan="2" class="title-row">Subgroups</th> </tr> + <tr> + <th scope="col">Name</th> + <th scope="col">Description</th> + </tr> </thead> <tbody> {{- range .subgroups }} @@ -29,6 +33,10 @@ <thead> <tr> <th colspan="2" class="title-row">Repos</th> + <tr> + <th scope="col">Name</th> + <th scope="col">Description</th> + </tr> </tr> </thead> <tbody> |