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