mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix no edit/close/delete button in org repo project view page (#24301)
Part of #23318.
This commit is contained in:
		| @@ -47,7 +47,7 @@ | ||||
| 				<h2 class="project-title">{{$.Project.Title}}</h2> | ||||
| 				<div class="content project-description">{{$.Project.RenderedContent|Str2html}}</div> | ||||
| 			</div> | ||||
| 			{{if and (or $.CanWriteIssues $.CanWritePulls) (not $.Repository.IsArchived)}} | ||||
| 			{{if and $.CanWriteProjects (not $.Repository.IsArchived)}} | ||||
| 				<div class="column right aligned"> | ||||
| 					<div class="ui compact right small menu"> | ||||
| 						<a class="item" href="{{$.RepoLink}}/projects/{{.Project.ID}}/edit?redirect=project" data-id={{$.Project.ID}} data-title={{$.Project.Title}}> | ||||
| @@ -277,7 +277,7 @@ | ||||
|  | ||||
| </div> | ||||
|  | ||||
| {{if or .CanWriteIssues .CanWritePulls}} | ||||
| {{if .CanWriteProjects}} | ||||
| 	<div class="ui gitea-confirm-modal delete modal"> | ||||
| 		<div class="header"> | ||||
| 			{{svg "octicon-trash"}} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user