2023-07-07 00:29:24 +05:30
<div class="ui container">
2021-11-25 00:12:54 +08: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 }} ">
2022-06-27 22:58:46 +02:00
{{ svg "octicon-repo" }} {{ .locale .Tr "user.repositories" }}
2023-04-21 01:33:30 +08:00
{{ if .ContextUser .NumRepos }}
<div class="ui small label"> {{ .ContextUser .NumRepos }} </div>
2023-04-19 20:58:36 +02:00
{{ end }}
2021-11-25 00:12:54 +08:00
</a>
2023-07-07 00:29:24 +05:30
{{ if .CanReadProjects }}
2023-01-20 19:42:33 +08:00
<a class=" {{ if .PageIsViewProjects }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} /-/projects">
2023-03-07 01:32:56 +09:00
{{ svg "octicon-project-symlink" }} {{ .locale .Tr "user.projects" }}
2023-01-20 19:42:33 +08:00
</a>
2023-03-11 00:18:20 +09:00
{{ end }}
{{ if and .IsPackageEnabled .CanReadPackages }}
2022-03-30 10:42:47 +02:00
<a class="item" href=" {{ $ .Org .HomeLink }} /-/packages">
2022-06-27 22:58:46 +02:00
{{ svg "octicon-package" }} {{ .locale .Tr "packages.title" }}
2022-03-30 10:42:47 +02:00
</a>
2022-04-01 01:31:53 +08:00
{{ end }}
2023-03-11 00:18:20 +09:00
{{ if and .IsRepoIndexerEnabled .CanReadCode }}
<a class="item" href=" {{ $ .Org .HomeLink }} /-/code">
2022-10-11 02:12:03 +03:00
{{ svg "octicon-code" }} {{ $ .locale .Tr "org.code" }}
</a>
{{ end }}
2021-11-25 00:12:54 +08:00
{{ if .IsOrganizationMember }}
2022-10-11 02:12:03 +03:00
<a class=" {{ if $ .PageIsOrgMembers }} active {{ end }} item" href=" {{ $ .OrgLink }} /members">
2023-02-18 15:41:31 +02:00
{{ svg "octicon-person" }} {{ $ .locale .Tr "org.members" }}
2021-11-25 00:12:54 +08:00
{{ if .NumMembers }}
2023-04-19 20:58:36 +02:00
<div class="ui small label"> {{ .NumMembers }} </div>
2021-11-25 00:12:54 +08:00
{{ end }}
</a>
2022-10-11 02:12:03 +03:00
<a class=" {{ if $ .PageIsOrgTeams }} active {{ end }} item" href=" {{ $ .OrgLink }} /teams">
2022-06-27 22:58:46 +02:00
{{ svg "octicon-people" }} {{ $ .locale .Tr "org.teams" }}
2021-11-25 00:12:54 +08:00
{{ if .NumTeams }}
2023-04-19 20:58:36 +02:00
<div class="ui small label"> {{ .NumTeams }} </div>
2021-11-25 00:12:54 +08: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">
2022-06-27 22:58:46 +02:00
{{ svg "octicon-tools" }} {{ .locale .Tr "repo.settings" }}
2021-11-25 00:12:54 +08:00
</a>
</div>
{{ end }}
</div>
</div>