| 1 | {{ define "org-settings-nav" -}} |
| 2 | <aside class="shithub-org-settings-sidebar" aria-label="Organization settings"> |
| 3 | <h1>Settings</h1> |
| 4 | <nav class="shithub-org-settings-menu"> |
| 5 | <a{{ if eq .OrgSettingsActive "profile" }} class="is-selected" aria-current="page"{{ end }} href="/organizations/{{ .Org.Slug }}/settings/profile">{{ octicon "organization" }} General</a> |
| 6 | <a{{ if eq .OrgSettingsActive "import" }} class="is-selected" aria-current="page"{{ end }} href="/organizations/{{ .Org.Slug }}/settings/import">{{ octicon "repo" }} Import repositories</a> |
| 7 | <span aria-disabled="true">{{ octicon "people" }} People</span> |
| 8 | <span aria-disabled="true">{{ octicon "repo" }} Repository defaults</span> |
| 9 | <span aria-disabled="true">{{ octicon "lock" }} Member privileges</span> |
| 10 | <h2>Code, planning, and automation</h2> |
| 11 | <span aria-disabled="true">{{ octicon "play" }} Actions</span> |
| 12 | <span aria-disabled="true">{{ octicon "table" }} Projects</span> |
| 13 | <span aria-disabled="true">{{ octicon "package" }} Packages</span> |
| 14 | <h2>Security</h2> |
| 15 | <span aria-disabled="true">{{ octicon "shield-check" }} Code security</span> |
| 16 | <span aria-disabled="true">{{ octicon "globe" }} Domains</span> |
| 17 | <h2>Access</h2> |
| 18 | {{ if .BillingEnabled }} |
| 19 | <a{{ if eq .OrgSettingsActive "billing" }} class="is-selected" aria-current="page"{{ end }} href="/organizations/{{ .Org.Slug }}/settings/billing">{{ octicon "credit-card" }} Billing and plans</a> |
| 20 | {{ else }} |
| 21 | <span aria-disabled="true">{{ octicon "credit-card" }} Billing and plans</span> |
| 22 | {{ end }} |
| 23 | <span aria-disabled="true">{{ octicon "gear" }} Integrations</span> |
| 24 | <span aria-disabled="true">{{ octicon "history" }} Audit log</span> |
| 25 | </nav> |
| 26 | </aside> |
| 27 | {{- end }} |