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 }}
2024-08-09 16:14:19 +00:00
< span hidden test-name = "repository-count" > {{ .RepoCount }} </ span >
2024-03-15 03:05:31 +01:00
< / 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 }}
2024-05-02 15:51:27 +00:00
< span hidden test-name = "project-count" > {{ .ProjectCount }} </ span >
2024-03-15 03:05:31 +01:00
< / 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" }}
2024-07-31 12:40:24 +02:00
{{ if .PackageCount }}
< div class = "ui small label" > {{ .PackageCount }} </ div >
{{ end }}
< span hidden test-name = "package-count" > {{ .PackageCount }} </ span >
2024-03-15 03:05:31 +01:00
< / 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 }}
2024-05-02 15:51:27 +00:00
< span hidden test-name = "member-count" > {{ .NumMembers }} </ span >
2024-03-15 03:05:31 +01:00
{{ 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 }}
2024-05-02 15:51:27 +00:00
< span hidden test-name = "team-count" > {{ .NumTeams }} </ span >
2024-03-15 03:05:31 +01:00
{{ if .IsOrganizationOwner }}
2024-04-25 22:19:24 +02:00
< a id = "settings-btn" class = " {{ if .PageIsOrgSettings }} active {{ end }} right item" href = " {{ .OrgLink }} /settings" >
2024-03-15 03:05:31 +01:00
{{ svg "octicon-tools" }} {{ ctx .Locale.Tr "repo.settings" }}
< / a >
{{ end }}
< / div >
< / overflow-menu >
2021-11-25 00:12:54 +08:00
< / div >