2023-07-07 00:29:24 +05:30
<div class="ui container">
2024-03-27 20:48:09 +08:00
<overflow-menu class="ui secondary pointing tabular borderless menu tw-mb-4">
2024-03-15 03:05:31 +01:00
<div class="overflow-menu-items">
<a class=" {{ if .PageIsViewRepositories }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} ">
{{ svg "octicon-repo" }} {{ ctx .Locale .Tr "user.repositories" }}
{{ if .RepoCount }}
<div class="ui small label"> {{ .RepoCount }} </div>
{{ end }}
</a>
{{ if .CanReadProjects }}
<a class=" {{ if .PageIsViewProjects }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} /-/projects">
{{ svg "octicon-project-symlink" }} {{ ctx .Locale .Tr "user.projects" }}
{{ if .ProjectCount }}
<div class="ui small label"> {{ .ProjectCount }} </div>
{{ end }}
</a>
2023-04-19 20:58:36 +02:00
{{ end }}
2024-03-15 03:05:31 +01:00
{{ if and .IsPackageEnabled .CanReadPackages }}
<a class=" {{ if .IsPackagesPage }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} /-/packages">
{{ svg "octicon-package" }} {{ ctx .Locale .Tr "packages.title" }}
</a>
2023-11-18 12:02:42 +09:00
{{ end }}
2024-03-15 03:05:31 +01:00
{{ if and .IsRepoIndexerEnabled .CanReadCode }}
<a class=" {{ if .IsCodePage }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} /-/code">
{{ svg "octicon-code" }} {{ ctx .Locale .Tr "org.code" }}
</a>
{{ end }}
{{ if .NumMembers }}
2022-10-11 02:12:03 +03:00
<a class=" {{ if $ .PageIsOrgMembers }} active {{ end }} item" href=" {{ $ .OrgLink }} /members">
2024-02-23 01:24:57 +01:00
{{ svg "octicon-person" }} {{ ctx .Locale .Tr "org.members" }}
2023-08-15 23:00:35 +09:00
<div class="ui small label"> {{ .NumMembers }} </div>
2021-11-25 00:12:54 +08:00
</a>
2024-03-15 03:05:31 +01:00
{{ end }}
{{ if .IsOrganizationMember }}
2022-10-11 02:12:03 +03:00
<a class=" {{ if $ .PageIsOrgTeams }} active {{ end }} item" href=" {{ $ .OrgLink }} /teams">
2024-02-23 01:24:57 +01:00
{{ svg "octicon-people" }} {{ ctx .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>
2024-03-15 03:05:31 +01:00
{{ end }}
{{ if .IsOrganizationOwner }}
<a class=" {{ if .PageIsOrgSettings }} active {{ end }} item" href=" {{ .OrgLink }} /settings">
{{ svg "octicon-tools" }} {{ ctx .Locale .Tr "repo.settings" }}
</a>
{{ end }}
</div>
</overflow-menu>
2021-11-25 00:12:54 +08:00
</div>