aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorJakob <72307968+jakob30061@users.noreply.github.com>2023-04-23 03:32:40 +0200
committerGitHub <noreply@github.com>2023-04-22 21:32:40 -0400
commit136d7492ffb9e105364c542ae3ec9dcf7c4816a0 (patch)
treed7e1235739dd54809d24b0b5a99159e0fdbb7d68 /routers
parent30ea09c27769375154742688a9fd323384120836 (diff)
downloadgitea-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')
-rw-r--r--routers/web/org/members.go1
-rw-r--r--routers/web/org/teams.go1
2 files changed, 2 insertions, 0 deletions
diff --git a/routers/web/org/members.go b/routers/web/org/members.go
index 8361da6632..1953a8b284 100644
--- a/routers/web/org/members.go
+++ b/routers/web/org/members.go
@@ -62,6 +62,7 @@ func Members(ctx *context.Context) {
}
ctx.Data["Page"] = pager
ctx.Data["Members"] = members
+ ctx.Data["ContextUser"] = ctx.ContextUser
ctx.Data["MembersIsPublicMember"] = membersIsPublic
ctx.Data["MembersIsUserOrgOwner"] = organization.IsUserOrgOwner(members, org.ID)
ctx.Data["MembersTwoFaStatus"] = members.GetTwoFaStatus()
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)
}