mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix the missing menu in organization project view page (#32313)
#29248 didn't modify the view page. The class name is not good enough, so this is a quick fix. Before: org:  user:  After: org:  user: (no change)  Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		| @@ -1,9 +1,13 @@ | ||||
| {{template "base/head" .}} | ||||
| <div role="main" aria-label="{{.Title}}" class="page-content repository projects view-project"> | ||||
| 	{{template "shared/user/org_profile_avatar" .}} | ||||
| 	<div class="ui container tw-mb-4"> | ||||
| 		{{template "user/overview/header" .}} | ||||
| 	</div> | ||||
| <div role="main" aria-label="{{.Title}}" class="page-content organization repository projects view-project"> | ||||
| 	{{if .ContextUser.IsOrganization}} | ||||
| 		{{template "org/header" .}} | ||||
| 	{{else}} | ||||
| 		{{template "shared/user/org_profile_avatar" .}} | ||||
| 		<div class="ui container tw-mb-4"> | ||||
| 			{{template "user/overview/header" .}} | ||||
| 		</div> | ||||
| 	{{end}} | ||||
| 	<div class="ui container fluid padded"> | ||||
| 		{{template "projects/view" .}} | ||||
| 	</div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user