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