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 /templates/user/overview | |
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 'templates/user/overview')
-rw-r--r-- | templates/user/overview/header.tmpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/user/overview/header.tmpl b/templates/user/overview/header.tmpl index ed0175dc93..10227a3ebd 100644 --- a/templates/user/overview/header.tmpl +++ b/templates/user/overview/header.tmpl @@ -20,6 +20,9 @@ <div class="ui secondary stackable pointing menu"> <a class="item" href="{{.ContextUser.HomeLink}}"> {{svg "octicon-repo"}} {{.locale.Tr "user.repositories"}} + {{if .ContextUser.NumRepos}} + <div class="ui small label">{{.ContextUser.NumRepos}}</div> + {{end}} </a> {{if and .IsProjectEnabled (or .ContextUser.IsIndividual (and .ContextUser.IsOrganization .CanReadProjects))}} <a href="{{.ContextUser.HomeLink}}/-/projects" class="{{if .PageIsViewProjects}}active {{end}}item"> @@ -42,13 +45,13 @@ <a class="item" href="{{$.OrgLink}}/members"> {{svg "octicon-person"}} {{$.locale.Tr "org.members"}} {{if .NumMembers}} - <div class="ui primary label">{{.NumMembers}}</div> + <div class="ui small label">{{.NumMembers}}</div> {{end}} </a> <a class="item" href="{{$.OrgLink}}/teams"> {{svg "octicon-people"}} {{$.locale.Tr "org.teams"}} {{if .NumTeams}} - <div class="ui primary label">{{.NumTeams}}</div> + <div class="ui small label">{{.NumTeams}}</div> {{end}} </a> {{end}} @@ -68,7 +71,7 @@ <a class='{{if eq .TabName "stars"}}active {{end}}item' href="{{.ContextUser.HomeLink}}?tab=stars"> {{svg "octicon-star"}} {{.locale.Tr "user.starred"}} {{if .ContextUser.NumStars}} - <div class="ui primary label">{{.ContextUser.NumStars}}</div> + <div class="ui small label">{{.ContextUser.NumStars}}</div> {{end}} </a> {{else}} |