2019-12-03 18:08:56 -07:00
{{if gt (len .PullReviewers) 0}}
2018-11-22 06:17:36 -07:00
<div class="comment box">
<div class="content">
<div class="ui segment">
<h4>{{$.i18n.Tr "repo.issues.review.reviewers"}}</h4>
2019-12-03 18:08:56 -07:00
{{range .PullReviewers}}
{{ $ createdStr := TimeSinceUnix .UpdatedUnix $.Lang }}
2018-11-22 06:17:36 -07:00
<div class="ui divider"></div>
<div class="review-item">
<span class="type-icon text {{if eq .Type 1}}green
{{else if eq .Type 2}}grey
{{else if eq .Type 3}}red
{{else}}grey{{end}}">
<span class="octicon octicon-{{.Type.Icon}}"></span>
</span>
2020-01-08 18:47:45 -07:00
{{if .Stale}}
<span class="type-icon text grey">
<i class="octicon icon fa-hourglass-end"></i>
</span>
{{end}}
2019-12-03 18:08:56 -07:00
<a class="ui avatar image" href="{{.Reviewer.HomeLink}}">
<img src="{{.Reviewer.RelAvatarLink}}">
2018-11-22 06:17:36 -07:00
</a>
2019-12-03 18:08:56 -07:00
<span class="text grey"><a href="{{.Reviewer.HomeLink}}">{{.Reviewer.Name}}</a>
2018-11-22 06:17:36 -07:00
{{if eq .Type 1}}
{{$.i18n.Tr "repo.issues.review.approve" $ createdStr | Safe}}
{{else if eq .Type 2}}
{{$.i18n.Tr "repo.issues.review.comment" $ createdStr | Safe}}
{{else if eq .Type 3}}
{{$.i18n.Tr "repo.issues.review.reject" $ createdStr | Safe}}
{{else}}
{{$.i18n.Tr "repo.issues.review.comment" $ createdStr | Safe}}
{{end}}
</span>
</div>
{{end}}
</div>
</div>
</div>
{{end}}
2017-03-16 23:57:43 -06:00
<div class="comment merge box">
<a class="avatar text
{{if .Issue.PullRequest.HasMerged}}purple
{{else if .Issue.IsClosed}}grey
2018-08-13 13:04:39 -06:00
{{else if .IsPullWorkInProgress}}grey
2019-02-05 04:54:49 -07:00
{{else if .IsFilesConflicted}}grey
2018-07-31 21:00:35 -06:00
{{else if .IsPullRequestBroken}}red
2018-12-11 04:28:37 -07:00
{{else if .IsBlockedByApprovals}}red
2020-01-03 10:47:10 -07:00
{{else if .IsBlockedByRejection}}red
2019-09-17 23:39:45 -06:00
{{else if and .EnableStatusCheck (not .IsRequiredStatusCheckSuccess)}}red
2020-01-15 01:32:57 -07:00
{{else if and .RequireSigned (not .WillSign)}}}red
2017-03-16 23:57:43 -06:00
{{else if .Issue.PullRequest.IsChecking}}yellow
{{else if .Issue.PullRequest.CanAutoMerge}}green
{{else}}red{{end}}"><span class="mega-octicon octicon-git-merge"></span></a>
<div class="content">
2019-06-30 01:57:59 -06:00
{{template "repo/pulls/status" .}}
2019-06-30 22:08:43 -06:00
<div class="ui {{if not $.LatestCommitStatus}}top attached header{{else}}attached merge-section segment{{end}}">
2017-03-16 23:57:43 -06:00
{{if .Issue.PullRequest.HasMerged}}
<div class="item text purple">
2019-09-03 00:29:36 -06:00
{{if .Issue.PullRequest.MergedCommitID}}
{{ $ link := printf "%s/commit/%s" $.Repository.HTMLURL .Issue.PullRequest.MergedCommitID}}
{{$.i18n.Tr "repo.pulls.merged_as" $ link (ShortSha .Issue.PullRequest.MergedCommitID) | Safe}}
{{else}}
{{$.i18n.Tr "repo.pulls.has_merged"}}
{{end}}
2017-03-16 23:57:43 -06:00
</div>
{{if .IsPullBranchDeletable}}
<div class="ui divider"></div>
<div>
<a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.i18n.Tr "repo.branch.delete" .HeadTarget}}</a>
</div>
{{end}}
{{else if .Issue.IsClosed}}
<div class="item text grey">
2019-04-20 14:50:34 -06:00
{{if .IsPullRequestBroken}}
{{$.i18n.Tr "repo.pulls.cant_reopen_deleted_branch"}}
{{else}}
{{$.i18n.Tr "repo.pulls.reopen_to_merge"}}
{{end}}
2017-03-16 23:57:43 -06:00
</div>
2020-01-07 10:06:14 -07:00
{{if and .IsPullBranchDeletable ( not .IsPullRequestBroken )}}
2019-04-20 14:50:34 -06:00
<div class="ui divider"></div>
<div>
<a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.i18n.Tr "repo.branch.delete" .HeadTarget}}</a>
</div>
{{end}}
2019-02-05 04:54:49 -07:00
{{else if .IsPullFilesConflicted}}
<div class="item text grey">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.files_conflicted"}}
{{range .ConflictedFiles}}
<div>{{.}}</div>
{{end}}
</div>
2018-07-31 21:00:35 -06:00
{{else if .IsPullRequestBroken}}
2017-03-16 23:57:43 -06:00
<div class="item text red">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-x"></span></i>
2017-03-16 23:57:43 -06:00
{{$.i18n.Tr "repo.pulls.data_broken"}}
</div>
2018-08-13 13:04:39 -06:00
{{else if .IsPullWorkInProgress}}
<div class="item text grey">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-x"></span></i>
2018-08-13 13:04:39 -06:00
{{$.i18n.Tr "repo.pulls.cannot_merge_work_in_progress" .WorkInProgressPrefix | Str2html}}
</div>
2017-03-16 23:57:43 -06:00
{{else if .Issue.PullRequest.IsChecking}}
<div class="item text yellow">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-sync"></span></i>
2017-03-16 23:57:43 -06:00
{{$.i18n.Tr "repo.pulls.is_checking"}}
</div>
{{else if .Issue.PullRequest.CanAutoMerge}}
2020-01-11 00:29:34 -07:00
{{if .IsBlockedByApprovals}}
<div class="item text red">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-x"></span></i>
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.blocked_by_approvals" .GrantedApprovals .Issue.PullRequest.ProtectedBranch.RequiredApprovals}}
</div>
{{else if .IsBlockedByRejection}}
<div class="item text red">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-x"></span></i>
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.blocked_by_rejection"}}
</div>
{{else if and .EnableStatusCheck (not .IsRequiredStatusCheckSuccess)}}
<div class="item text red">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-x"></span></i>
2020-01-11 00:29:34 -07:00
{{$.i18n.Tr "repo.pulls.required_status_check_failed"}}
</div>
2020-01-15 01:32:57 -07:00
{{else if and .RequireSigned (not .WillSign)}}
<div class="item text red">
<i class="icon icon-octicon"><span class="octicon octicon-x"></span></i>
{{$.i18n.Tr "repo.pulls.require_signed_wont_sign"}}
</div>
<div class="item text yellow">
<i class="icon unlock grey"></i>
{{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
</div>
2019-09-17 23:39:45 -06:00
{{end}}
2020-01-16 14:01:22 -07:00
{{ $ notAllOverridableChecksOk := or .IsBlockedByApprovals .IsBlockedByRejection (and .EnableStatusCheck (not .IsRequiredStatusCheckSuccess))}}
{{if and (or $.IsRepoAdmin (not $ notAllOverridableChecksOk )) (or (not .RequireSigned) .WillSign)}}
{{if $ notAllOverridableChecksOk }}
2019-09-17 23:39:45 -06:00
<div class="item text yellow">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-primitive-dot"></span></i>
2019-09-17 23:39:45 -06:00
{{$.i18n.Tr "repo.pulls.required_status_check_administrator"}}
2018-12-27 03:27:08 -07:00
</div>
2019-09-17 23:39:45 -06:00
{{else}}
<div class="item text green">
2020-01-15 01:32:57 -07:00
<i class="icon icon-octicon"><span class="octicon octicon-check"></span></i>
2019-09-17 23:39:45 -06:00
{{$.i18n.Tr "repo.pulls.can_auto_merge_desc"}}
2018-01-05 11:56:50 -07:00
</div>
2019-09-17 23:39:45 -06:00
{{end}}
2020-01-15 01:32:57 -07:00
{{if .WillSign}}
<div class="item text green">
<i class="icon lock green"></i>
{{$.i18n.Tr "repo.signing.will_sign" .SigningKey}}
</div>
2020-01-15 15:55:25 -07:00
{{else if .IsSigned}}
2020-01-15 01:32:57 -07:00
<div class="item text yellow">
<i class="icon unlock grey"></i>
{{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
</div>
{{end}}
2020-01-16 23:03:40 -07:00
{{if and .Divergence (gt .Divergence.Behind 0)}}
<div class="ui very compact branch-update grid">
<div class="row">
<div class="item text gray eleven wide left floated column">
<i class="icon icon-octicon"><span class="octicon octicon-alert"></span></i>
{{$.i18n.Tr "repo.pulls.outdated_with_base_branch"}}
</div>
{{if .UpdateAllowed}}
<div class="item text five wide right floated column">
<form action="{{.Link}}/update" method="post">
{{.CsrfTokenHtml}}
<button class="ui button" data-do="update">
<span class="item text">{{$.i18n.Tr "repo.pulls.update_branch"}}</span>
</button>
</form>
</div>
{{end}}
</div>
</div>
{{end}}
2019-09-17 23:39:45 -06:00
{{if .AllowMerge}}
{{ $ prUnit := .Repository.MustGetUnit $.UnitTypePullRequests}}
2019-12-30 16:34:11 -07:00
{{ $ approvers := .Issue.PullRequest.GetApprovers}}
2019-09-17 23:39:45 -06:00
{{if or $ prUnit . PullRequestsConfig . AllowMerge $ prUnit . PullRequestsConfig . AllowRebase $ prUnit . PullRequestsConfig . AllowRebaseMerge $ prUnit . PullRequestsConfig . AllowSquash }}
<div class="ui divider"></div>
{{if $ prUnit . PullRequestsConfig . AllowMerge }}
<div class="ui form merge-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<div class="field">
<input type="text" name="merge_title_field" value="{{.Issue.PullRequest.GetDefaultMergeMessage}}">
</div>
<div class="field">
2020-01-09 07:31:09 -07:00
<textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">Reviewed-on: {{$.Issue.HTMLURL}}& #13;& #10;{{ $ approvers }}</textarea>
2019-09-17 23:39:45 -06:00
</div>
<button class="ui green button" type="submit" name="do" value="merge">
{{$.i18n.Tr "repo.pulls.merge_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebase }}
<div class="ui form rebase-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<button class="ui green button" type="submit" name="do" value="rebase">
{{$.i18n.Tr "repo.pulls.rebase_merge_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebaseMerge }}
<div class="ui form rebase-merge-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<div class="field">
<input type="text" name="merge_title_field" value="{{.Issue.PullRequest.GetDefaultMergeMessage}}">
</div>
<div class="field">
2020-01-09 07:31:09 -07:00
<textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">Reviewed-on: {{$.Issue.HTMLURL}}& #13;& #10;{{ $ approvers }}</textarea>
2019-09-17 23:39:45 -06:00
</div>
<button class="ui green button" type="submit" name="do" value="rebase-merge">
{{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowSquash }}
2019-12-30 16:34:11 -07:00
{{ $ commitMessages := .Issue.PullRequest.GetCommitMessages}}
2019-09-17 23:39:45 -06:00
<div class="ui form squash-fields" style="display: none">
<form action="{{.Link}}/merge" method="post">
{{.CsrfTokenHtml}}
<div class="field">
<input type="text" name="merge_title_field" value="{{.Issue.PullRequest.GetDefaultSquashMessage}}">
</div>
<div class="field">
2020-01-09 07:31:09 -07:00
<textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">{{ $ commitMessages }}Reviewed-on: {{$.Issue.HTMLURL}}& #13;& #10;{{ $ approvers }}</textarea>
2019-09-17 23:39:45 -06:00
</div>
<button class="ui green button" type="submit" name="do" value="squash">
{{$.i18n.Tr "repo.pulls.squash_merge_pull_request"}}
</button>
<button class="ui button merge-cancel">
{{$.i18n.Tr "cancel"}}
</button>
</form>
</div>
{{end}}
2020-01-16 14:01:22 -07:00
<div class="ui {{if $ notAllOverridableChecksOk }}red{{else}}green{{end}} buttons merge-button">
2019-09-17 23:39:45 -06:00
<button class="ui button" data-do="{{.MergeStyle}}">
<span class="octicon octicon-git-merge"></span>
<span class="button-text">
{{if eq .MergeStyle "merge"}}
{{$.i18n.Tr "repo.pulls.merge_pull_request"}}
2018-01-05 11:56:50 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
{{if eq .MergeStyle "rebase"}}
{{$.i18n.Tr "repo.pulls.rebase_merge_pull_request"}}
2018-01-05 11:56:50 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
{{if eq .MergeStyle "rebase-merge"}}
{{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}}
2018-12-27 03:27:08 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
{{if eq .MergeStyle "squash"}}
{{$.i18n.Tr "repo.pulls.squash_merge_pull_request"}}
2018-01-05 11:56:50 -07:00
{{end}}
2019-09-17 23:39:45 -06:00
</span>
</button>
<div class="ui dropdown icon button">
<i class="dropdown icon"></i>
<div class="menu">
{{if $ prUnit . PullRequestsConfig . AllowMerge }}
<div class="item{{if eq .MergeStyle "merge"}} active selected{{end}}" data-do="merge">{{$.i18n.Tr "repo.pulls.merge_pull_request"}}</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebase }}
<div class="item{{if eq .MergeStyle "rebase"}} active selected{{end}}" data-do="rebase">{{$.i18n.Tr "repo.pulls.rebase_merge_pull_request"}}</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowRebaseMerge }}
<div class="item{{if eq .MergeStyle "rebase-merge"}} active selected{{end}}" data-do="rebase-merge">{{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}}</div>
{{end}}
{{if $ prUnit . PullRequestsConfig . AllowSquash }}
<div class="item{{if eq .MergeStyle "squash"}} active selected{{end}}" data-do="squash">{{$.i18n.Tr "repo.pulls.squash_merge_pull_request"}}</div>
{{end}}
</div>
2018-01-05 11:56:50 -07:00
</div>
</div>
2019-09-17 23:39:45 -06:00
{{else}}
<div class="item text red">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.no_merge_desc"}}
</div>
<div class="item text grey">
<span class="octicon octicon-info"></span>
{{$.i18n.Tr "repo.pulls.no_merge_helper"}}
</div>
{{end}}
2020-01-11 00:29:34 -07:00
{{else}}
<div class="item text grey">
<span class="octicon octicon-info"></span>
{{$.i18n.Tr "repo.pulls.no_merge_access"}}
</div>
2018-01-05 11:56:50 -07:00
{{end}}
2017-03-16 23:57:43 -06:00
{{end}}
{{else}}
2020-01-11 00:29:34 -07:00
{{/* Merge conflict without specific file. Suggest manual merge, only if all reviews and status checks OK. */}}
{{if .IsBlockedByApprovals}}
<div class="item text red">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.blocked_by_approvals" .GrantedApprovals .Issue.PullRequest.ProtectedBranch.RequiredApprovals}}
</div>
{{else if .IsBlockedByRejection}}
<div class="item text red">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.blocked_by_rejection"}}
</div>
{{else if and .EnableStatusCheck (not .IsRequiredStatusCheckSuccess)}}
<div class="item text red">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.required_status_check_failed"}}
</div>
2020-01-15 01:32:57 -07:00
{{else if and .RequireSigned (not .WillSign)}}
<div class="item text red">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.require_signed_wont_sign"}}
</div>
2020-01-11 00:29:34 -07:00
{{else}}
<div class="item text red">
<span class="octicon octicon-x"></span>
{{$.i18n.Tr "repo.pulls.cannot_auto_merge_desc"}}
</div>
<div class="item text grey">
<span class="octicon octicon-info"></span>
{{$.i18n.Tr "repo.pulls.cannot_auto_merge_helper"}}
</div>
{{end}}
2017-03-16 23:57:43 -06:00
{{end}}
</div>
</div>
</div>