diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-06 21:13:23 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-06 21:13:23 +0800 |
commit | ccc4061884fac1683abb701d452a4706e963a945 (patch) | |
tree | 764dbee713a035cb8d047dcdc7ee97b6b528ee81 /templates | |
parent | readme: Fix filename typo (diff) | |
download | forge-ccc4061884fac1683abb701d452a4706e963a945.tar.gz forge-ccc4061884fac1683abb701d452a4706e963a945.tar.zst forge-ccc4061884fac1683abb701d452a4706e963a945.zip |
group: Add description field to the create repo form
Diffstat (limited to 'templates')
-rw-r--r-- | templates/group.tmpl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/group.tmpl b/templates/group.tmpl index 00752c7..ae0892c 100644 --- a/templates/group.tmpl +++ b/templates/group.tmpl @@ -33,11 +33,17 @@ </thead> <tbody> <tr> - <th scope="row">Repo name</th> + <th scope="row">Name</th> <td class="tdinput"> <input id="repo-name-input" name="repo_name" type="text" /> </td> </tr> + <tr> + <th scope="row">Description</th> + <td class="tdinput"> + <input id="repo-desc-input" name="repo_desc" type="text" /> + </td> + </tr> </tbody> <tfoot> <tr> |