diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-11-17 22:24:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 06:24:49 +0000 |
commit | 896314c7a2be7987b07f5e7ca7aa4b0a82c97c71 (patch) | |
tree | 101b3e80ada906444feb3be71a0e33b29b7f394c /templates/admin | |
parent | 696fbe60365d59a2d979f977b5ae6f13c52f9188 (diff) | |
download | gitea-896314c7a2be7987b07f5e7ca7aa4b0a82c97c71.tar.gz gitea-896314c7a2be7987b07f5e7ca7aa4b0a82c97c71.zip |
Fix some places which doesn't repsect org full name setting (#32243)
Partially fix #31345
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/org/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin/org/list.tmpl b/templates/admin/org/list.tmpl index d0805c85bc..d5e09939c5 100644 --- a/templates/admin/org/list.tmpl +++ b/templates/admin/org/list.tmpl @@ -52,7 +52,7 @@ <tr> <td>{{.ID}}</td> <td> - <a href="{{.HomeLink}}">{{.Name}}</a> + <a href="{{.HomeLink}}">{{if and DefaultShowFullName .FullName}}{{.FullName}} ({{.Name}}){{else}}{{.Name}}{{end}}</a> {{if .Visibility.IsPrivate}} <span class="text gold">{{svg "octicon-lock"}}</span> {{end}} |