mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 20:36:07 +01:00 
			
		
		
		
	Fix correct usage of teams (#17732)
- `.Teams` isn't a field on the User type, thus using the seperate loaded teams. - Add a space between `PathEscape` and argument. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -69,6 +69,12 @@ func HandleOrgAssignment(ctx *Context, args ...bool) {
 | 
				
			|||||||
	org := ctx.Org.Organization
 | 
						org := ctx.Org.Organization
 | 
				
			||||||
	ctx.Data["Org"] = org
 | 
						ctx.Data["Org"] = org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						teams, err := org.LoadTeams()
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							ctx.ServerError("LoadTeams", err)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						ctx.Data["OrgTeams"] = teams
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Admin has super access.
 | 
						// Admin has super access.
 | 
				
			||||||
	if ctx.IsSigned && ctx.User.IsAdmin {
 | 
						if ctx.IsSigned && ctx.User.IsAdmin {
 | 
				
			||||||
		ctx.Org.IsOwner = true
 | 
							ctx.Org.IsOwner = true
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -61,7 +61,7 @@
 | 
				
			|||||||
							<a class="{{if not $.Team}}active selected{{end}} item" title="{{.i18n.Tr "all"}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
 | 
												<a class="{{if not $.Team}}active selected{{end}} item" title="{{.i18n.Tr "all"}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
 | 
				
			||||||
								{{.i18n.Tr "all"}}
 | 
													{{.i18n.Tr "all"}}
 | 
				
			||||||
							</a>
 | 
												</a>
 | 
				
			||||||
							{{range .Org.Teams}}
 | 
												{{range .OrgTeams}}
 | 
				
			||||||
								{{if not .IncludesAllRepositories}}
 | 
													{{if not .IncludesAllRepositories}}
 | 
				
			||||||
									<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}}">
 | 
														<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}}">
 | 
				
			||||||
										{{.Name}}
 | 
															{{.Name}}
 | 
				
			||||||
@@ -85,7 +85,7 @@
 | 
				
			|||||||
			</a>
 | 
								</a>
 | 
				
			||||||
			{{end}}
 | 
								{{end}}
 | 
				
			||||||
			{{if not .UnitPullsGlobalDisabled}}
 | 
								{{if not .UnitPullsGlobalDisabled}}
 | 
				
			||||||
			<a class="{{if .PageIsPulls}}active{{end}} item" href="{{.ContextUser.OrganisationLink}}/pulls{{if .Team}}/{{PathEscape.Team.Name}}{{end}}">
 | 
								<a class="{{if .PageIsPulls}}active{{end}} item" href="{{.ContextUser.OrganisationLink}}/pulls{{if .Team}}/{{PathEscape .Team.Name}}{{end}}">
 | 
				
			||||||
				{{svg "octicon-git-pull-request"}} {{.i18n.Tr "pull_requests"}}
 | 
									{{svg "octicon-git-pull-request"}} {{.i18n.Tr "pull_requests"}}
 | 
				
			||||||
			</a>
 | 
								</a>
 | 
				
			||||||
			{{end}}
 | 
								{{end}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user