2023-07-06 21:59:24 +03:00
<div class="ui container">
2024-03-27 15:48:09 +03:00
<overflow-menu class="ui secondary pointing tabular borderless menu tw-mb-4">
2024-03-15 05:05:31 +03:00
<div class="overflow-menu-items">
2024-08-27 05:54:12 +03:00
{{ if .HasProfileReadme }}
<a class=" {{ if .PageIsViewOverview }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} ">
{{ svg "octicon-info" }} {{ ctx .Locale .Tr "user.overview" }}
</a>
{{ end }}
<a class=" {{ if .PageIsViewRepositories }} active {{ end }} item" href=" {{ $ .Org .HomeLink }} {{ if .HasProfileReadme }} /-/repositories {{ end }} ">
2024-03-15 05:05:31 +03:00
{{ 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 21:58:36 +03:00
{{ end }}
2024-03-15 05:05:31 +03: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 06:02:42 +03:00
{{ end }}
2024-03-15 05:05:31 +03: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 03:24:57 +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>
2024-03-15 05:05:31 +03: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 03:24:57 +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>
2024-03-15 05:05:31 +03:00
{{ end }}
{{ if .IsOrganizationOwner }}
2024-04-30 07:26:13 +03:00
<span class="item-flex-space"></span>
2024-03-15 05:05:31 +03:00
<a class=" {{ if .PageIsOrgSettings }} active {{ end }} item" href=" {{ .OrgLink }} /settings">
2024-04-30 07:26:13 +03:00
{{ svg "octicon-tools" }} {{ ctx .Locale .Tr "repo.settings" }}
2024-03-15 05:05:31 +03:00
</a>
{{ end }}
</div>
</overflow-menu>
2021-11-24 19:12:54 +03:00
</div>