{{template "base/alert" .}}
		
			{{template "org/team/sidebar" .}}
			
	
				{{template "org/team/navbar" .}}
				{{$canAddRemove := and $.IsOrganizationOwner (not $.Team.IncludesAllRepositories)}}
				{{if $canAddRemove}}
					
						
							
						
						
							
						
					
				{{end}}
				
		
					{{range .Team.Repos}}
						
			
							{{if $canAddRemove}}
								
							{{end}}
							
								{{if .IsPrivate}}
									{{svg "octicon-lock"}}
								{{else if .IsFork}}
									{{svg "octicon-repo-forked"}}
								{{else if .IsMirror}}
									{{svg "octicon-mirror"}}
								{{else}}
									{{svg "octicon-repo"}}
								{{end}}
								{{$.Org.Name}}/{{.Name}}
							
						
					{{else}}
						
							{{$.locale.Tr "org.teams.repos.none"}}
						
					{{end}}