diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-11-19 21:19:37 -0500 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-11-19 21:19:37 -0500 |
commit | 0c92da7e9c4b4f41c016d14079db2ee405dbffba (patch) | |
tree | 19e197a9f536f62a15a0cd6a2127a8365b0cea2f /templates/admin/repo/list.tmpl | |
parent | 8fac41768cf583e5ecacd5c55c87cb17981089f9 (diff) | |
download | gitea-0c92da7e9c4b4f41c016d14079db2ee405dbffba.tar.gz gitea-0c92da7e9c4b4f41c016d14079db2ee405dbffba.zip |
fix invalid user links in admin panels
Diffstat (limited to 'templates/admin/repo/list.tmpl')
-rw-r--r-- | templates/admin/repo/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin/repo/list.tmpl b/templates/admin/repo/list.tmpl index cb333aebf7..276fdff819 100644 --- a/templates/admin/repo/list.tmpl +++ b/templates/admin/repo/list.tmpl @@ -31,7 +31,7 @@ {{range .Repos}} <tr> <td>{{.Id}}</td> - <td><a href="{{AppSubUrl}}/user/{{.Owner.Name}}">{{.Owner.Name}}</a></td> + <td><a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a></td> <td><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td> <td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td> <td>{{.NumWatches}}</td> |