diff options
author | Jakob <72307968+jakob30061@users.noreply.github.com> | 2023-04-23 03:32:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-22 21:32:40 -0400 |
commit | 136d7492ffb9e105364c542ae3ec9dcf7c4816a0 (patch) | |
tree | d7e1235739dd54809d24b0b5a99159e0fdbb7d68 /routers/web/org/teams.go | |
parent | 30ea09c27769375154742688a9fd323384120836 (diff) | |
download | gitea-136d7492ffb9e105364c542ae3ec9dcf7c4816a0.tar.gz gitea-136d7492ffb9e105364c542ae3ec9dcf7c4816a0.zip |
Add missing badges in user profile for /projects and /packages (#24232)
- Implement fix for user and organization page
- Add necessary ctx.Data
When switching tabs on `user profile page` the badges are shown for
`/gitea_user?tab=stars`, `/gitea_user?tab=activity` and missing under
`gitea_user/-/projects` and `gitea_user/-/packages`
This was added for users and organizations.
Before:
![image](https://user-images.githubusercontent.com/72307968/233338877-f795fae3-b65a-4ea1-8784-dd2b0cd6618f.png)
After:
![image](https://user-images.githubusercontent.com/72307968/233339012-90adb6c4-4de2-432e-ae49-69611eb7aec3.png)
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'routers/web/org/teams.go')
-rw-r--r-- | routers/web/org/teams.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/web/org/teams.go b/routers/web/org/teams.go index e2ec6d8785..bae8e5a003 100644 --- a/routers/web/org/teams.go +++ b/routers/web/org/teams.go @@ -56,6 +56,7 @@ func Teams(ctx *context.Context) { } } ctx.Data["Teams"] = ctx.Org.Teams + ctx.Data["ContextUser"] = ctx.ContextUser ctx.HTML(http.StatusOK, tplTeams) } |