2023-07-06 21:59:24 +03:00
<div class="ui container">
2021-11-24 19:12:54 +03:00
<div class="ui secondary stackable pointing menu">
2022-10-11 02:12:03 +03:00
<a class=" {{ if .PageIsViewRepositories }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} ">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-repo" }} {{ ctx .Locale .Tr "user.repositories" }}
2023-08-11 20:08:05 +03:00
{{ if .RepoCount }}
<div class="ui small label"> {{ .RepoCount }} </div>
2023-04-19 21:58:36 +03:00
{{ end }}
2021-11-24 19:12:54 +03:00
</a>
2023-07-06 21:59:24 +03:00
{{ if .CanReadProjects }}
2023-01-20 14:42:33 +03:00
<a class=" {{ if .PageIsViewProjects }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} /-/projects">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-project-symlink" }} {{ ctx .Locale .Tr "user.projects" }}
2023-11-18 06:02:42 +03:00
{{ if .ProjectCount }}
<div class="ui small label"> {{ .ProjectCount }} </div>
{{ end }}
2023-01-20 14:42:33 +03:00
</a>
2023-03-10 18:18:20 +03:00
{{ end }}
{{ if and .IsPackageEnabled .CanReadPackages }}
2022-03-30 11:42:47 +03:00
<a class="item" href=" {{ $ .Org .HomeLink }} /-/packages">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-package" }} {{ ctx .Locale .Tr "packages.title" }}
2022-03-30 11:42:47 +03:00
</a>
2022-03-31 20:31:53 +03:00
{{ end }}
2023-03-10 18:18:20 +03:00
{{ if and .IsRepoIndexerEnabled .CanReadCode }}
<a class="item" href=" {{ $ .Org .HomeLink }} /-/code">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-code" }} {{ ctx .Locale .Tr "org.code" }}
2022-10-11 02:12:03 +03:00
</a>
{{ end }}
2023-08-15 17:00:35 +03:00
{{ if .NumMembers }}
2022-10-11 02:12:03 +03:00
<a class=" {{ if $ .PageIsOrgMembers }} active {{ end }} item" href=" {{ $ .OrgLink }} /members">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-person" }} {{ ctx .Locale .Tr "org.members" }}
2023-08-15 17:00:35 +03:00
<div class="ui small label"> {{ .NumMembers }} </div>
2021-11-24 19:12:54 +03:00
</a>
2023-08-15 17:00:35 +03:00
{{ end }}
{{ if .IsOrganizationMember }}
2022-10-11 02:12:03 +03:00
<a class=" {{ if $ .PageIsOrgTeams }} active {{ end }} item" href=" {{ $ .OrgLink }} /teams">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-people" }} {{ ctx .Locale .Tr "org.teams" }}
2021-11-24 19:12:54 +03:00
{{ if .NumTeams }}
2023-04-19 21:58:36 +03:00
<div class="ui small label"> {{ .NumTeams }} </div>
2021-11-24 19:12:54 +03:00
{{ end }}
</a>
{{ end }}
{{ if .IsOrganizationOwner }}
<div class="right menu">
2022-10-11 02:12:03 +03:00
<a class=" {{ if .PageIsOrgSettings }} active {{ end }} item" href=" {{ .OrgLink }} /settings">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-tools" }} {{ ctx .Locale .Tr "repo.settings" }}
2021-11-24 19:12:54 +03:00
</a>
</div>
{{ end }}
</div>
</div>