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