mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Merge pull request #2383 from exmex/develop
Added organization display on profile
This commit is contained in:
		@@ -75,6 +75,13 @@ func Profile(ctx *middleware.Context) {
 | 
				
			|||||||
	ctx.Data["PageIsUserProfile"] = true
 | 
						ctx.Data["PageIsUserProfile"] = true
 | 
				
			||||||
	ctx.Data["Owner"] = u
 | 
						ctx.Data["Owner"] = u
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
 | 
						orgs, err := models.GetOwnedOrgsByUserIDDesc(u.Id, "updated")
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							ctx.Handle(500, "GetOwnedOrgsByUserIDDesc", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						ctx.Data["Orgs"] = orgs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	tab := ctx.Query("tab")
 | 
						tab := ctx.Query("tab")
 | 
				
			||||||
	ctx.Data["TabName"] = tab
 | 
						ctx.Data["TabName"] = tab
 | 
				
			||||||
	switch tab {
 | 
						switch tab {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,7 +40,7 @@
 | 
				
			|||||||
							{{end}}
 | 
												{{end}}
 | 
				
			||||||
							<li><i class="icon octicon octicon-clock"></i> {{.i18n.Tr "user.join_on"}} {{DateFmtShort .Owner.Created}}</li>
 | 
												<li><i class="icon octicon octicon-clock"></i> {{.i18n.Tr "user.join_on"}} {{DateFmtShort .Owner.Created}}</li>
 | 
				
			||||||
							<li>
 | 
												<li>
 | 
				
			||||||
								<i class="user icon"></i>
 | 
													<i class="icon octicon octicon-person"></i>
 | 
				
			||||||
								<a href="{{.Owner.HomeLink}}/followers">
 | 
													<a href="{{.Owner.HomeLink}}/followers">
 | 
				
			||||||
									{{.Owner.NumFollowers}} {{.i18n.Tr "user.followers"}}
 | 
														{{.Owner.NumFollowers}} {{.i18n.Tr "user.followers"}}
 | 
				
			||||||
								</a>
 | 
													</a>
 | 
				
			||||||
@@ -51,12 +51,17 @@
 | 
				
			|||||||
							</li>
 | 
												</li>
 | 
				
			||||||
							{{/*
 | 
												{{/*
 | 
				
			||||||
							<li>
 | 
												<li>
 | 
				
			||||||
								<i class="octicon octicon-star"></i>
 | 
													<i class="icon octicon octicon-star"></i>
 | 
				
			||||||
								<a href="{{.Owner.HomeLink}}/stars">
 | 
													<a href="{{.Owner.HomeLink}}/stars">
 | 
				
			||||||
									{{.Owner.NumStars}} {{.i18n.Tr "user.starred"}}
 | 
														{{.Owner.NumStars}} {{.i18n.Tr "user.starred"}}
 | 
				
			||||||
								</a>
 | 
													</a>
 | 
				
			||||||
							</li>
 | 
												</li>
 | 
				
			||||||
							*/}}
 | 
												*/}}
 | 
				
			||||||
 | 
												<li>
 | 
				
			||||||
 | 
													{{range .Orgs}}
 | 
				
			||||||
 | 
														<a href="{{.HomeLink}}"><img class="ui mini image" src="{{.AvatarLink}}"></a>
 | 
				
			||||||
 | 
													{{end}}
 | 
				
			||||||
 | 
												</li>
 | 
				
			||||||
							{{if and .IsSigned (ne .SignedUserName .Owner.Name)}}
 | 
												{{if and .IsSigned (ne .SignedUserName .Owner.Name)}}
 | 
				
			||||||
							<li class="follow">
 | 
												<li class="follow">
 | 
				
			||||||
								{{if .SignedUser.IsFollowing .Owner.Id}}
 | 
													{{if .SignedUser.IsFollowing .Owner.Id}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user