2023-07-07 02:59:24 +08:00
|
|
|
<div class="ui secondary stackable pointing menu">
|
2023-11-13 22:33:22 +08:00
|
|
|
{{if and .HasProfileReadme .ContextUser.IsIndividual}}
|
2023-09-02 01:32:39 +08:00
|
|
|
<a class="{{if eq .TabName "overview"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=overview">
|
2023-09-25 16:56:50 +08:00
|
|
|
{{svg "octicon-info"}} {{ctx.Locale.Tr "user.overview"}}
|
2023-07-07 02:59:24 +08:00
|
|
|
</a>
|
2023-05-09 13:57:24 +08:00
|
|
|
{{end}}
|
2023-07-07 02:59:24 +08:00
|
|
|
<a class="{{if eq .TabName "repositories"}}active {{end}} item" href="{{.ContextUser.HomeLink}}?tab=repositories">
|
2023-09-25 16:56:50 +08:00
|
|
|
{{svg "octicon-repo"}} {{ctx.Locale.Tr "user.repositories"}}
|
2023-08-12 01:08:05 +08:00
|
|
|
{{if .RepoCount}}
|
|
|
|
<div class="ui small label">{{.RepoCount}}</div>
|
2023-05-09 13:57:24 +08:00
|
|
|
{{end}}
|
2023-07-07 02:59:24 +08:00
|
|
|
</a>
|
2024-02-23 08:24:57 +08:00
|
|
|
{{if or .ContextUser.IsIndividual .CanReadProjects}}
|
2023-07-07 02:59:24 +08:00
|
|
|
<a href="{{.ContextUser.HomeLink}}/-/projects" class="{{if .PageIsViewProjects}}active {{end}}item">
|
2023-09-25 16:56:50 +08:00
|
|
|
{{svg "octicon-project-symlink"}} {{ctx.Locale.Tr "user.projects"}}
|
2023-11-18 11:02:42 +08:00
|
|
|
{{if .ProjectCount}}
|
|
|
|
<div class="ui small label">{{.ProjectCount}}</div>
|
|
|
|
{{end}}
|
2023-07-07 02:59:24 +08:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2024-02-23 08:24:57 +08:00
|
|
|
{{if and .IsPackageEnabled (or .ContextUser.IsIndividual .CanReadPackages)}}
|
2023-07-07 02:59:24 +08:00
|
|
|
<a href="{{.ContextUser.HomeLink}}/-/packages" class="{{if .IsPackagesPage}}active {{end}}item">
|
2023-09-25 16:56:50 +08:00
|
|
|
{{svg "octicon-package"}} {{ctx.Locale.Tr "packages.title"}}
|
2023-04-20 16:58:26 +08:00
|
|
|
</a>
|
2023-07-07 02:59:24 +08:00
|
|
|
{{end}}
|
2024-02-23 08:24:57 +08:00
|
|
|
{{if and .IsRepoIndexerEnabled (or .ContextUser.IsIndividual .CanReadCode)}}
|
2023-07-07 02:59:24 +08:00
|
|
|
<a href="{{.ContextUser.HomeLink}}/-/code" class="{{if .IsCodePage}}active {{end}}item">
|
2023-09-25 16:56:50 +08:00
|
|
|
{{svg "octicon-code"}} {{ctx.Locale.Tr "user.code"}}
|
2023-04-20 16:58:26 +08:00
|
|
|
</a>
|
2023-07-07 02:59:24 +08:00
|
|
|
{{end}}
|
|
|
|
|
2024-02-23 08:24:57 +08:00
|
|
|
<a class="{{if eq .TabName "activity"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=activity">
|
|
|
|
{{svg "octicon-rss"}} {{ctx.Locale.Tr "user.activity"}}
|
|
|
|
</a>
|
|
|
|
{{if not .DisableStars}}
|
|
|
|
<a class="{{if eq .TabName "stars"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=stars">
|
|
|
|
{{svg "octicon-star"}} {{ctx.Locale.Tr "user.starred"}}
|
|
|
|
{{if .ContextUser.NumStars}}
|
|
|
|
<div class="ui small label">{{.ContextUser.NumStars}}</div>
|
|
|
|
{{end}}
|
|
|
|
</a>
|
2023-07-07 02:59:24 +08:00
|
|
|
{{else}}
|
2024-02-23 08:24:57 +08:00
|
|
|
<a class="{{if eq .TabName "watching"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=watching">
|
|
|
|
{{svg "octicon-eye"}} {{ctx.Locale.Tr "user.watched"}}
|
2023-07-07 02:59:24 +08:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2022-03-30 16:42:47 +08:00
|
|
|
</div>
|