mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	#2251 fix button name
This commit is contained in:
		@@ -51,6 +51,8 @@ func MustEnablePulls(ctx *middleware.Context) {
 | 
			
		||||
	if !ctx.Repo.Repository.EnablePulls {
 | 
			
		||||
		ctx.Handle(404, "MustEnablePulls", nil)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	ctx.Data["HasForkedRepo"] = ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func RetrieveLabels(ctx *middleware.Context) {
 | 
			
		||||
@@ -69,9 +71,12 @@ func RetrieveLabels(ctx *middleware.Context) {
 | 
			
		||||
func Issues(ctx *middleware.Context) {
 | 
			
		||||
	isPullList := ctx.Params(":type") == "pulls"
 | 
			
		||||
	if isPullList {
 | 
			
		||||
		MustEnablePulls(ctx)
 | 
			
		||||
		if ctx.Written() {
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
		ctx.Data["Title"] = ctx.Tr("repo.pulls")
 | 
			
		||||
		ctx.Data["PageIsPullList"] = true
 | 
			
		||||
		ctx.Data["HasForkedRepo"] = ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)
 | 
			
		||||
 | 
			
		||||
	} else {
 | 
			
		||||
		MustEnableIssues(ctx)
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
		<div class="navbar">
 | 
			
		||||
			{{template "repo/issue/navbar" .}}
 | 
			
		||||
			<div class="ui right">
 | 
			
		||||
				<a class="ui green button" href="{{$.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a>
 | 
			
		||||
				<a class="ui green button {{if not .HasForkedRepo}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName}}...{{.SignedUserName}}:{{.BranchName}}">{{.i18n.Tr "repo.pulls.new"}}</a>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<div class="ui divider"></div>
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
		<div class="navbar">
 | 
			
		||||
			{{template "repo/issue/navbar" .}}
 | 
			
		||||
			<div class="ui right">
 | 
			
		||||
				<a class="ui green button" href="{{$.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a>
 | 
			
		||||
				<a class="ui green button {{if not .HasForkedRepo}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName}}...{{.SignedUserName}}:{{.BranchName}}">{{.i18n.Tr "repo.pulls.new"}}</a>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<div class="ui divider"></div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user