mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Show edit/close/delete button on organization wide repositories (#23388)
A part of https://github.com/go-gitea/gitea/pull/22865
This commit is contained in:
		@@ -113,7 +113,7 @@ func Projects(ctx *context.Context) {
 | 
				
			|||||||
	pager.AddParam(ctx, "state", "State")
 | 
						pager.AddParam(ctx, "state", "State")
 | 
				
			||||||
	ctx.Data["Page"] = pager
 | 
						ctx.Data["Page"] = pager
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	ctx.Data["CanWriteProjects"] = true
 | 
						ctx.Data["CanWriteProjects"] = ctx.Repo.Permission.CanWrite(unit.TypeProjects)
 | 
				
			||||||
	ctx.Data["IsShowClosed"] = isShowClosed
 | 
						ctx.Data["IsShowClosed"] = isShowClosed
 | 
				
			||||||
	ctx.Data["IsProjectsPage"] = true
 | 
						ctx.Data["IsProjectsPage"] = true
 | 
				
			||||||
	ctx.Data["SortType"] = sortType
 | 
						ctx.Data["SortType"] = sortType
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -51,7 +51,7 @@
 | 
				
			|||||||
							{{JsPrettyNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}}
 | 
												{{JsPrettyNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}}
 | 
				
			||||||
						</span>
 | 
											</span>
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					{{if and (or $.CanWriteIssues $.CanWritePulls) (not $.Repository.IsArchived)}}
 | 
										{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
 | 
				
			||||||
					<div class="ui right operate">
 | 
										<div class="ui right operate">
 | 
				
			||||||
						<a href="{{$.Link}}/{{.ID}}/edit" data-id={{.ID}} data-title={{.Title}}>{{svg "octicon-pencil"}} {{$.locale.Tr "repo.issues.label_edit"}}</a>
 | 
											<a href="{{$.Link}}/{{.ID}}/edit" data-id={{.ID}} data-title={{.Title}}>{{svg "octicon-pencil"}} {{$.locale.Tr "repo.issues.label_edit"}}</a>
 | 
				
			||||||
						{{if .IsClosed}}
 | 
											{{if .IsClosed}}
 | 
				
			||||||
@@ -59,7 +59,7 @@
 | 
				
			|||||||
						{{else}}
 | 
											{{else}}
 | 
				
			||||||
							<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-skip"}} {{$.locale.Tr "repo.projects.close"}}</a>
 | 
												<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-skip"}} {{$.locale.Tr "repo.projects.close"}}</a>
 | 
				
			||||||
						{{end}}
 | 
											{{end}}
 | 
				
			||||||
						<a class="delete-button" href="#" data-url="{{$.RepoLink}}/projects/{{.ID}}/delete" data-id="{{.ID}}">{{svg "octicon-trash"}} {{$.locale.Tr "repo.issues.label_delete"}}</a>
 | 
											<a class="delete-button" href="#" data-url="{{$.Link}}/{{.ID}}/delete" data-id="{{.ID}}">{{svg "octicon-trash"}} {{$.locale.Tr "repo.issues.label_delete"}}</a>
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					{{end}}
 | 
										{{end}}
 | 
				
			||||||
					{{if .Description}}
 | 
										{{if .Description}}
 | 
				
			||||||
@@ -75,7 +75,7 @@
 | 
				
			|||||||
	</div>
 | 
						</div>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{{if or .CanWriteIssues .CanWritePulls}}
 | 
					{{if $.CanWriteProjects}}
 | 
				
			||||||
<div class="ui small basic delete modal">
 | 
					<div class="ui small basic delete modal">
 | 
				
			||||||
	<div class="ui icon header">
 | 
						<div class="ui icon header">
 | 
				
			||||||
		{{svg "octicon-trash"}}
 | 
							{{svg "octicon-trash"}}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -43,7 +43,7 @@
 | 
				
			|||||||
				<h2 class="project-title">{{$.Project.Title}}</h2>
 | 
									<h2 class="project-title">{{$.Project.Title}}</h2>
 | 
				
			||||||
				<div class="content project-description">{{$.Project.RenderedContent|Str2html}}</div>
 | 
									<div class="content project-description">{{$.Project.RenderedContent|Str2html}}</div>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
			{{if or $.CanWriteIssues $.CanWritePulls}}
 | 
								{{if $.CanWriteProjects}}
 | 
				
			||||||
				<div class="column right aligned">
 | 
									<div class="column right aligned">
 | 
				
			||||||
					<div class="ui compact right small menu">
 | 
										<div class="ui compact right small menu">
 | 
				
			||||||
						<a class="item" href="{{$.Link}}/edit?redirect=project" data-id={{$.Project.ID}} data-title={{$.Project.Title}}>
 | 
											<a class="item" href="{{$.Link}}/edit?redirect=project" data-id={{$.Project.ID}} data-title={{$.Project.Title}}>
 | 
				
			||||||
@@ -256,7 +256,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{{if or .CanWriteIssues .CanWritePulls}}
 | 
					{{if .CanWriteProjects}}
 | 
				
			||||||
	<div class="ui small basic delete modal">
 | 
						<div class="ui small basic delete modal">
 | 
				
			||||||
		<div class="ui icon header">
 | 
							<div class="ui icon header">
 | 
				
			||||||
			{{svg "octicon-trash"}}
 | 
								{{svg "octicon-trash"}}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -53,15 +53,15 @@
 | 
				
			|||||||
							{{JsPrettyNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}}
 | 
												{{JsPrettyNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}}
 | 
				
			||||||
						</span>
 | 
											</span>
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					{{if and (or $.CanWriteIssues $.CanWritePulls) (not $.Repository.IsArchived)}}
 | 
										{{if and $.CanWriteProjects (not $.Repository.IsArchived)}}
 | 
				
			||||||
					<div class="ui right operate">
 | 
										<div class="ui right operate">
 | 
				
			||||||
						<a href="{{$.Link}}/{{.ID}}/edit" data-id={{.ID}} data-title={{.Title}}>{{svg "octicon-pencil"}} {{$.locale.Tr "repo.issues.label_edit"}}</a>
 | 
											<a href="{{.Link}}/edit" data-id={{.ID}} data-title={{.Title}}>{{svg "octicon-pencil"}} {{$.locale.Tr "repo.issues.label_edit"}}</a>
 | 
				
			||||||
						{{if .IsClosed}}
 | 
											{{if .IsClosed}}
 | 
				
			||||||
							<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/open">{{svg "octicon-check"}} {{$.locale.Tr "repo.projects.open"}}</a>
 | 
												<a class="link-action" href data-url="{{.Link}}/open">{{svg "octicon-check"}} {{$.locale.Tr "repo.projects.open"}}</a>
 | 
				
			||||||
						{{else}}
 | 
											{{else}}
 | 
				
			||||||
							<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-skip"}} {{$.locale.Tr "repo.projects.close"}}</a>
 | 
												<a class="link-action" href data-url="{{.Link}}/close">{{svg "octicon-skip"}} {{$.locale.Tr "repo.projects.close"}}</a>
 | 
				
			||||||
						{{end}}
 | 
											{{end}}
 | 
				
			||||||
						<a class="delete-button" href="#" data-url="{{$.RepoLink}}/projects/{{.ID}}/delete" data-id="{{.ID}}">{{svg "octicon-trash"}} {{$.locale.Tr "repo.issues.label_delete"}}</a>
 | 
											<a class="delete-button" href="#" data-url="{{.Link}}/delete" data-id="{{.ID}}">{{svg "octicon-trash"}} {{$.locale.Tr "repo.issues.label_delete"}}</a>
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					{{end}}
 | 
										{{end}}
 | 
				
			||||||
					{{if .Description}}
 | 
										{{if .Description}}
 | 
				
			||||||
@@ -77,7 +77,7 @@
 | 
				
			|||||||
	</div>
 | 
						</div>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{{if or .CanWriteIssues .CanWritePulls}}
 | 
					{{if .CanWriteProjects}}
 | 
				
			||||||
<div class="ui small basic delete modal">
 | 
					<div class="ui small basic delete modal">
 | 
				
			||||||
	<div class="ui icon header">
 | 
						<div class="ui icon header">
 | 
				
			||||||
		{{svg "octicon-trash"}}
 | 
							{{svg "octicon-trash"}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user