2019-01-23 13:58:38 -05:00
|
|
|
{{if and $.root.SignedUserID (not $.Repository.IsArchived)}}
|
2023-03-04 02:13:37 -05:00
|
|
|
<form class="ui form {{if $.hidden}}gt-hidden comment-form{{end}}" action="{{$.root.Issue.Link}}/files/reviews/comments" method="post">
|
2018-08-06 00:43:22 -04:00
|
|
|
{{$.root.CsrfTokenHtml}}
|
2021-01-08 16:49:55 -05:00
|
|
|
<input type="hidden" name="origin" value="{{if $.root.PageIsPullFiles}}diff{{else}}timeline{{end}}">
|
2023-03-27 12:05:51 -04:00
|
|
|
<input type="hidden" name="latest_commit_id" value="{{$.root.AfterCommitID}}">
|
2018-08-06 00:43:22 -04:00
|
|
|
<input type="hidden" name="side" value="{{if $.Side}}{{$.Side}}{{end}}">
|
|
|
|
<input type="hidden" name="line" value="{{if $.Line}}{{$.Line}}{{end}}">
|
|
|
|
<input type="hidden" name="path" value="{{if $.File}}{{$.File}}{{end}}">
|
|
|
|
<input type="hidden" name="diff_start_cid">
|
|
|
|
<input type="hidden" name="diff_end_cid">
|
|
|
|
<input type="hidden" name="diff_base_cid">
|
2023-04-03 06:06:57 -04:00
|
|
|
|
|
|
|
{{template "shared/combomarkdowneditor" (dict
|
|
|
|
"locale" $.root.locale
|
|
|
|
"MarkdownPreviewUrl" (print $.root.Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" $.root.RepoLink
|
|
|
|
"TextareaName" "content"
|
|
|
|
"TextareaPlaceholder" ($.locale.Tr "repo.diff.comment.placeholder")
|
|
|
|
"DropzoneParentContainer" "form"
|
|
|
|
)}}
|
|
|
|
|
2023-02-13 12:59:59 -05:00
|
|
|
<div class="field footer gt-mx-3">
|
2022-06-27 16:58:46 -04:00
|
|
|
<span class="markup-info">{{svg "octicon-markup"}} {{$.root.locale.Tr "repo.diff.comment.markdown_info"}}</span>
|
2020-05-14 15:15:21 -04:00
|
|
|
<div class="ui right">
|
2018-10-22 16:13:35 -04:00
|
|
|
{{if $.reply}}
|
2022-06-27 16:58:46 -04:00
|
|
|
<button class="ui submit green tiny button btn-reply" type="submit">{{$.root.locale.Tr "repo.diff.comment.reply"}}</button>
|
2020-05-14 15:15:21 -04:00
|
|
|
<input type="hidden" name="reply" value="{{$.reply}}">
|
2023-04-01 01:50:40 -04:00
|
|
|
<input type="hidden" name="single_review" value="true">
|
2018-10-22 16:13:35 -04:00
|
|
|
{{else}}
|
2018-08-06 00:43:22 -04:00
|
|
|
{{if $.root.CurrentReview}}
|
2023-03-04 02:13:37 -05:00
|
|
|
<button name="pending_review" type="submit" class="ui submit green tiny button btn-add-comment">{{$.root.locale.Tr "repo.diff.comment.add_review_comment"}}</button>
|
2018-08-06 00:43:22 -04:00
|
|
|
{{else}}
|
2023-03-04 02:13:37 -05:00
|
|
|
<button name="pending_review" type="submit" class="ui submit green tiny button btn-start-review">{{$.root.locale.Tr "repo.diff.comment.start_review"}}</button>
|
|
|
|
<button name="single_review" value="true" type="submit" class="ui submit tiny basic button btn-add-single">{{$.root.locale.Tr "repo.diff.comment.add_single_comment"}}</button>
|
2018-08-06 00:43:22 -04:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if or (not $.HasComments) $.hidden}}
|
2022-06-27 16:58:46 -04:00
|
|
|
<button type="button" class="ui submit tiny basic button btn-cancel cancel-code-comment">{{$.root.locale.Tr "cancel"}}</button>
|
2018-08-06 00:43:22 -04:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|