aboutsummaryrefslogtreecommitdiffstats
path: root/templates/admin
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2024-11-17 22:24:49 -0800
committerGitHub <noreply@github.com>2024-11-18 06:24:49 +0000
commit896314c7a2be7987b07f5e7ca7aa4b0a82c97c71 (patch)
tree101b3e80ada906444feb3be71a0e33b29b7f394c /templates/admin
parent696fbe60365d59a2d979f977b5ae6f13c52f9188 (diff)
downloadgitea-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.tmpl2
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}}