2019-01-23 18:58:38 +00:00
|
|
|
{{if and $.root.SignedUserID (not $.Repository.IsArchived)}}
|
2023-03-04 07:13:37 +00:00
|
|
|
<form class="ui form {{if $.hidden}}gt-hidden comment-form{{end}}" action="{{$.root.Issue.Link}}/files/reviews/comments" method="post">
|
2018-08-06 04:43:22 +00:00
|
|
|
{{$.root.CsrfTokenHtml}}
|
2021-01-08 21:49:55 +00:00
|
|
|
<input type="hidden" name="origin" value="{{if $.root.PageIsPullFiles}}diff{{else}}timeline{{end}}">
|
2023-03-27 16:05:51 +00:00
|
|
|
<input type="hidden" name="latest_commit_id" value="{{$.root.AfterCommitID}}">
|
2018-08-06 04:43:22 +00: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 10:06:57 +00: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 17:59:59 +00:00
|
|
|
<div class="field footer gt-mx-3">
|
2022-06-27 20:58:46 +00:00
|
|
|
<span class="markup-info">{{svg "octicon-markup"}} {{$.root.locale.Tr "repo.diff.comment.markdown_info"}}</span>
|
2020-05-14 19:15:21 +00:00
|
|
|
<div class="ui right">
|
2018-10-22 20:13:35 +00:00
|
|
|
{{if $.reply}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<button class="ui submit green tiny button btn-reply" type="submit">{{$.root.locale.Tr "repo.diff.comment.reply"}}</button>
|
2020-05-14 19:15:21 +00:00
|
|
|
<input type="hidden" name="reply" value="{{$.reply}}">
|
2023-04-01 05:50:40 +00:00
|
|
|
<input type="hidden" name="single_review" value="true">
|
2018-10-22 20:13:35 +00:00
|
|
|
{{else}}
|
2018-08-06 04:43:22 +00:00
|
|
|
{{if $.root.CurrentReview}}
|
2023-03-04 07:13:37 +00: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 04:43:22 +00:00
|
|
|
{{else}}
|
2023-03-04 07:13:37 +00: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 04:43:22 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if or (not $.HasComments) $.hidden}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<button type="button" class="ui submit tiny basic button btn-cancel cancel-code-comment">{{$.root.locale.Tr "cancel"}}</button>
|
2018-08-06 04:43:22 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|