2019-02-09 16:07:38 +01:00
|
|
|
<div class="dashboard-navbar">
|
2023-05-01 12:51:14 +02:00
|
|
|
<div class="ui secondary stackable menu">
|
2017-12-31 01:47:52 +01:00
|
|
|
<div class="item">
|
2023-04-04 02:47:23 +02:00
|
|
|
<div class="ui floating dropdown jump">
|
2021-02-12 02:29:07 +01:00
|
|
|
<span class="text truncated-item-container">
|
2023-08-10 05:19:39 +02:00
|
|
|
{{ctx.AvatarUtils.Avatar .ContextUser}}
|
2021-02-12 02:29:07 +01:00
|
|
|
<span class="truncated-item-name">{{.ContextUser.ShortName 40}}</span>
|
2023-03-08 16:18:10 +01:00
|
|
|
<span class="org-visibility">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{if .ContextUser.Visibility.IsLimited}}<div class="ui basic tiny horizontal label">{{ctx.Locale.Tr "org.settings.visibility.limited_shortname"}}</div>{{end}}
|
|
|
|
{{if .ContextUser.Visibility.IsPrivate}}<div class="ui basic tiny horizontal label">{{ctx.Locale.Tr "org.settings.visibility.private_shortname"}}</div>{{end}}
|
2023-03-08 16:18:10 +01:00
|
|
|
</span>
|
2020-10-31 23:15:11 +01:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2017-12-31 01:47:52 +01:00
|
|
|
</span>
|
2023-08-26 04:44:00 +02:00
|
|
|
<div class="context user overflow menu">
|
2017-12-31 01:47:52 +01:00
|
|
|
<div class="ui header">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{ctx.Locale.Tr "home.switch_dashboard_context"}}
|
2017-12-31 01:47:52 +01:00
|
|
|
</div>
|
2019-03-05 04:13:51 +01:00
|
|
|
<div class="scrolling menu items">
|
2021-02-12 02:29:07 +01:00
|
|
|
<a class="{{if eq .ContextUser.ID .SignedUser.ID}}active selected{{end}} item truncated-item-container" href="{{AppSubUrl}}/{{if .PageIsIssues}}issues{{else if .PageIsPulls}}pulls{{else if .PageIsMilestonesDashboard}}milestones{{end}}">
|
2023-08-10 05:19:39 +02:00
|
|
|
{{ctx.AvatarUtils.Avatar .SignedUser}}
|
2021-02-12 02:29:07 +01:00
|
|
|
<span class="truncated-item-name">{{.SignedUser.ShortName 40}}</span>
|
2023-03-08 16:18:10 +01:00
|
|
|
<span class="org-visibility">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{if .SignedUser.Visibility.IsLimited}}<div class="ui basic tiny horizontal label">{{ctx.Locale.Tr "org.settings.visibility.limited_shortname"}}</div>{{end}}
|
|
|
|
{{if .SignedUser.Visibility.IsPrivate}}<div class="ui basic tiny horizontal label">{{ctx.Locale.Tr "org.settings.visibility.private_shortname"}}</div>{{end}}
|
2023-03-08 16:18:10 +01:00
|
|
|
</span>
|
2017-12-31 01:47:52 +01:00
|
|
|
</a>
|
|
|
|
{{range .Orgs}}
|
2021-04-30 19:25:13 +02:00
|
|
|
<a class="{{if eq $.ContextUser.ID .ID}}active selected{{end}} item truncated-item-container" title="{{.Name}}" href="{{.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
|
2023-08-10 05:19:39 +02:00
|
|
|
{{ctx.AvatarUtils.Avatar .}}
|
2021-02-12 02:29:07 +01:00
|
|
|
<span class="truncated-item-name">{{.ShortName 40}}</span>
|
2020-10-06 08:25:43 +02:00
|
|
|
<span class="org-visibility">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{if .Visibility.IsLimited}}<div class="ui basic tiny horizontal label">{{ctx.Locale.Tr "org.settings.visibility.limited_shortname"}}</div>{{end}}
|
|
|
|
{{if .Visibility.IsPrivate}}<div class="ui basic tiny horizontal label">{{ctx.Locale.Tr "org.settings.visibility.private_shortname"}}</div>{{end}}
|
2020-10-06 08:25:43 +02:00
|
|
|
</span>
|
2017-12-31 01:47:52 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-08-12 19:16:10 +02:00
|
|
|
{{if .SignedUser.CanCreateOrganization}}
|
2017-12-31 01:47:52 +01:00
|
|
|
<a class="item" href="{{AppSubUrl}}/org/create">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{svg "octicon-plus"}} {{ctx.Locale.Tr "new_org"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</a>
|
2018-08-12 19:16:10 +02:00
|
|
|
{{end}}
|
2017-12-31 01:47:52 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-31 01:47:52 +01:00
|
|
|
{{if .ContextUser.IsOrganization}}
|
2021-03-17 23:45:16 +01:00
|
|
|
<div class="item">
|
2023-04-04 02:47:23 +02:00
|
|
|
<div class="ui floating dropdown jump">
|
2021-03-17 23:45:16 +01:00
|
|
|
<span class="text">
|
|
|
|
{{svg "octicon-people" 18}}
|
|
|
|
{{if .Team}}
|
|
|
|
{{.Team.Name}}
|
|
|
|
{{else}}
|
2023-09-25 15:15:51 +02:00
|
|
|
{{ctx.Locale.Tr "org.teams"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2023-09-21 18:24:07 +02:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2023-08-26 04:44:00 +02:00
|
|
|
<div class="context user overflow menu">
|
2021-03-17 23:45:16 +01:00
|
|
|
<div class="ui header">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{ctx.Locale.Tr "home.filter_by_team_repositories"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</div>
|
|
|
|
<div class="scrolling menu items">
|
2023-09-25 15:15:51 +02:00
|
|
|
<a class="{{if not $.Team}}active selected{{end}} item" title="{{ctx.Locale.Tr "all"}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
|
|
|
|
{{ctx.Locale.Tr "all"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</a>
|
2022-05-07 17:49:43 +02:00
|
|
|
{{range .Teams}}
|
2021-03-17 23:45:16 +01:00
|
|
|
{{if not .IncludesAllRepositories}}
|
2021-04-30 19:25:13 +02:00
|
|
|
<a class="{{if $.Team}}{{if eq $.Team.ID .ID}}active selected{{end}}{{end}} item" title="{{.Name}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}/{{.Name}}">
|
2021-03-17 23:45:16 +01:00
|
|
|
{{.Name}}
|
|
|
|
</a>
|
2020-12-27 20:58:03 +01:00
|
|
|
{{end}}
|
2021-03-17 23:45:16 +01:00
|
|
|
{{end}}
|
2020-12-27 20:58:03 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-26 22:15:13 +01:00
|
|
|
</div>
|
2017-12-31 01:47:52 +01:00
|
|
|
{{end}}
|
2021-03-17 23:45:16 +01:00
|
|
|
|
|
|
|
{{if .ContextUser.IsOrganization}}
|
2023-06-09 11:10:51 +02:00
|
|
|
<div class="right menu">
|
2023-05-10 23:59:58 +02:00
|
|
|
<a class="{{if .PageIsNews}}active {{end}}item gt-ml-auto" href="{{.ContextUser.DashboardLink}}{{if .Team}}/{{PathEscape .Team.Name}}{{end}}">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{svg "octicon-rss"}} {{ctx.Locale.Tr "activities"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</a>
|
|
|
|
{{if not .UnitIssuesGlobalDisabled}}
|
2022-12-09 14:34:51 +01:00
|
|
|
<a class="{{if .PageIsIssues}}active {{end}}item" href="{{.ContextUser.OrganisationLink}}/issues{{if .Team}}/{{PathEscape .Team.Name}}{{end}}">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{svg "octicon-issue-opened"}} {{ctx.Locale.Tr "issues"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if not .UnitPullsGlobalDisabled}}
|
2022-12-09 14:34:51 +01:00
|
|
|
<a class="{{if .PageIsPulls}}active {{end}}item" href="{{.ContextUser.OrganisationLink}}/pulls{{if .Team}}/{{PathEscape .Team.Name}}{{end}}">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{svg "octicon-git-pull-request"}} {{ctx.Locale.Tr "pull_requests"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if and .ShowMilestonesDashboardPage (not (and .UnitIssuesGlobalDisabled .UnitPullsGlobalDisabled))}}
|
2022-12-09 14:34:51 +01:00
|
|
|
<a class="{{if .PageIsMilestonesDashboard}}active {{end}}item" href="{{.ContextUser.OrganisationLink}}/milestones{{if .Team}}/{{PathEscape .Team.Name}}{{end}}">
|
2023-09-25 15:15:51 +02:00
|
|
|
{{svg "octicon-milestone"}} {{ctx.Locale.Tr "milestones"}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
<div class="item">
|
2023-09-25 15:15:51 +02:00
|
|
|
<a class="ui primary basic button" href="{{.ContextUser.HomeLink}}" title="{{ctx.Locale.Tr "home.view_home" .ContextUser.Name}}">
|
|
|
|
{{ctx.Locale.Tr "home.view_home" (.ContextUser.ShortName 40)}}
|
2021-03-17 23:45:16 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2021-03-26 22:15:13 +01:00
|
|
|
</div>
|
2015-08-25 16:58:34 +02:00
|
|
|
</div>
|
2023-06-29 14:24:22 +02:00
|
|
|
<div class="divider"></div>
|