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