Unify allow edits logic
This commit is contained in:
parent
6bd4925753
commit
66b22c5818
2 changed files with 18 additions and 13 deletions
|
@ -52,7 +52,15 @@
|
||||||
{{template "repo/issue/view_content/sidebar/actions" .}}
|
{{template "repo/issue/view_content/sidebar/actions" .}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{if and .Issue.IsPull .IsIssuePoster (not .Issue.IsClosed) .Issue.PullRequest.HeadRepo}}
|
{{if and
|
||||||
|
.Issue.IsPull
|
||||||
|
.IsIssuePoster
|
||||||
|
(not .Issue.IsClosed)
|
||||||
|
.Issue.PullRequest.HeadRepo
|
||||||
|
(not (eq .Issue.PullRequest.HeadRepo.FullName .Issue.PullRequest.BaseRepo.FullName))
|
||||||
|
.CanWriteToHeadRepo
|
||||||
|
}}
|
||||||
|
<div class="divider"></div>
|
||||||
{{template "repo/issue/view_content/sidebar/pull_maintainer_edits" .}}
|
{{template "repo/issue/view_content/sidebar/pull_maintainer_edits" .}}
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
{{if and (not (eq .Issue.PullRequest.HeadRepo.FullName .Issue.PullRequest.BaseRepo.FullName)) .CanWriteToHeadRepo}}
|
<div class="inline field">
|
||||||
<div class="divider"></div>
|
<div class="ui checkbox loading-icon-2px" id="allow-edits-from-maintainers"
|
||||||
<div class="inline field">
|
data-url="{{.Issue.Link}}"
|
||||||
<div class="ui checkbox loading-icon-2px" id="allow-edits-from-maintainers"
|
data-tooltip-content="{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers_desc"}}"
|
||||||
data-url="{{.Issue.Link}}"
|
data-prompt-error="{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers_err"}}"
|
||||||
data-tooltip-content="{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers_desc"}}"
|
>
|
||||||
data-prompt-error="{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers_err"}}"
|
<label><strong>{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers"}}</strong></label>
|
||||||
>
|
<input type="checkbox" {{if .Issue.PullRequest.AllowMaintainerEdit}}checked{{end}}>
|
||||||
<label><strong>{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers"}}</strong></label>
|
|
||||||
<input type="checkbox" {{if .Issue.PullRequest.AllowMaintainerEdit}}checked{{end}}>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue