2023-02-21 13:36:53 +00:00
|
|
|
<div id="review-box">
|
2023-06-21 02:55:11 +00:00
|
|
|
<button class="ui tiny green button gt-pr-2 gt-df js-btn-review">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "repo.diff.review"}}
|
2022-05-07 05:35:12 +00:00
|
|
|
<span class="ui small label review-comments-counter" data-pending-comment-number="{{.PendingCodeCommentNumber}}">{{.PendingCodeCommentNumber}}</span>
|
2020-10-31 22:15:11 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2023-02-21 13:36:53 +00:00
|
|
|
</button>
|
2023-03-17 17:24:00 +00:00
|
|
|
<div class="review-box-panel tippy-target">
|
2023-02-21 13:36:53 +00:00
|
|
|
<div class="ui segment">
|
2018-08-06 04:43:22 +00:00
|
|
|
<form class="ui form" action="{{.Link}}/reviews/submit" method="post">
|
2023-04-03 10:06:57 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
2023-03-27 16:05:51 +00:00
|
|
|
<input type="hidden" name="commit_id" value="{{.AfterCommitID}}">
|
2023-05-12 10:53:41 +00:00
|
|
|
<div class="field gt-df gt-ac">
|
2023-02-13 17:59:59 +00:00
|
|
|
<div class="gt-f1">{{$.locale.Tr "repo.diff.review.header"}}</div>
|
2023-05-12 10:53:41 +00:00
|
|
|
<a class="muted close">{{svg "octicon-x" 16}}</a>
|
2018-08-06 04:43:22 +00:00
|
|
|
</div>
|
2023-05-12 10:53:41 +00:00
|
|
|
<div class="field">
|
2023-04-03 10:06:57 +00:00
|
|
|
{{template "shared/combomarkdowneditor" (dict
|
|
|
|
"locale" $.locale
|
2023-05-12 10:53:41 +00:00
|
|
|
"MarkdownPreviewUrl" (print .Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" .RepoLink
|
2023-04-03 10:06:57 +00:00
|
|
|
"TextareaName" "content"
|
|
|
|
"TextareaPlaceholder" ($.locale.Tr "repo.diff.review.placeholder")
|
|
|
|
"DropzoneParentContainer" "form"
|
|
|
|
)}}
|
2018-08-06 04:43:22 +00:00
|
|
|
</div>
|
2021-06-15 01:12:33 +00:00
|
|
|
{{if .IsAttachmentEnabled}}
|
|
|
|
<div class="field">
|
|
|
|
{{template "repo/upload" .}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-08-06 04:43:22 +00:00
|
|
|
<div class="ui divider"></div>
|
2023-03-20 21:54:23 +00:00
|
|
|
{{$showSelfTooltip := (and $.IsSigned ($.Issue.IsPoster $.SignedUser.ID))}}
|
|
|
|
{{if $showSelfTooltip}}
|
2023-03-24 10:35:38 +00:00
|
|
|
<span class="gt-dib" data-tooltip-content="{{$.locale.Tr "repo.diff.review.self_approve"}}">
|
2023-03-20 21:54:23 +00:00
|
|
|
<button type="submit" name="type" value="approve" disabled class="ui submit green tiny button btn-submit">{{$.locale.Tr "repo.diff.review.approve"}}</button>
|
|
|
|
</span>
|
|
|
|
{{else}}
|
|
|
|
<button type="submit" name="type" value="approve" class="ui submit green tiny button btn-submit">{{$.locale.Tr "repo.diff.review.approve"}}</button>
|
|
|
|
{{end}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<button type="submit" name="type" value="comment" class="ui submit tiny basic button btn-submit">{{$.locale.Tr "repo.diff.review.comment"}}</button>
|
2023-03-20 21:54:23 +00:00
|
|
|
{{if $showSelfTooltip}}
|
2023-03-24 10:35:38 +00:00
|
|
|
<span class="gt-dib" data-tooltip-content="{{$.locale.Tr "repo.diff.review.self_reject"}}">
|
2023-03-20 21:54:23 +00:00
|
|
|
<button type="submit" name="type" value="reject" disabled class="ui submit red tiny button btn-submit">{{$.locale.Tr "repo.diff.review.reject"}}</button>
|
|
|
|
</span>
|
|
|
|
{{else}}
|
|
|
|
<button type="submit" name="type" value="reject" class="ui submit red tiny button btn-submit">{{$.locale.Tr "repo.diff.review.reject"}}</button>
|
|
|
|
{{end}}
|
2018-08-06 04:43:22 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|