2019-01-23 19:58:38 +01:00
|
|
|
{{if and $.root.SignedUserID (not $.Repository.IsArchived)}}
|
2023-03-04 08:13:37 +01:00
|
|
|
<form class="ui form {{if $.hidden}}gt-hidden comment-form{{end}}" action="{{$.root.Issue.Link}}/files/reviews/comments" method="post">
|
2018-08-06 06:43:22 +02:00
|
|
|
{{$.root.CsrfTokenHtml}}
|
2021-01-08 22:49:55 +01:00
|
|
|
<input type="hidden" name="origin" value="{{if $.root.PageIsPullFiles}}diff{{else}}timeline{{end}}">
|
2023-03-27 18:05:51 +02:00
|
|
|
<input type="hidden" name="latest_commit_id" value="{{$.root.AfterCommitID}}">
|
2018-08-06 06:43:22 +02: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 12:06:57 +02:00
|
|
|
|
|
|
|
{{template "shared/combomarkdowneditor" (dict
|
|
|
|
"MarkdownPreviewUrl" (print $.root.Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" $.root.RepoLink
|
|
|
|
"TextareaName" "content"
|
2023-09-25 10:56:50 +02:00
|
|
|
"TextareaPlaceholder" (ctx.Locale.Tr "repo.diff.comment.placeholder")
|
2023-04-03 12:06:57 +02:00
|
|
|
"DropzoneParentContainer" "form"
|
2023-07-31 00:11:15 +02:00
|
|
|
"DisableAutosize" "true"
|
2023-04-03 12:06:57 +02:00
|
|
|
)}}
|
|
|
|
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="field footer gt-mx-3">
|
2023-09-24 22:31:58 +02:00
|
|
|
<span class="markup-info">{{svg "octicon-markup"}} {{ctx.Locale.Tr "repo.diff.comment.markdown_info"}}</span>
|
2023-08-31 04:29:59 +02:00
|
|
|
<div class="gt-text-right">
|
2018-10-22 22:13:35 +02:00
|
|
|
{{if $.reply}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<button class="ui submit primary tiny button btn-reply" type="submit">{{ctx.Locale.Tr "repo.diff.comment.reply"}}</button>
|
2020-05-14 21:15:21 +02:00
|
|
|
<input type="hidden" name="reply" value="{{$.reply}}">
|
2023-04-01 07:50:40 +02:00
|
|
|
<input type="hidden" name="single_review" value="true">
|
2018-10-22 22:13:35 +02:00
|
|
|
{{else}}
|
2018-08-06 06:43:22 +02:00
|
|
|
{{if $.root.CurrentReview}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<button name="pending_review" type="submit" class="ui submit primary tiny button btn-add-comment">{{ctx.Locale.Tr "repo.diff.comment.add_review_comment"}}</button>
|
2018-08-06 06:43:22 +02:00
|
|
|
{{else}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<button name="pending_review" type="submit" class="ui submit primary tiny button btn-start-review">{{ctx.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">{{ctx.Locale.Tr "repo.diff.comment.add_single_comment"}}</button>
|
2018-08-06 06:43:22 +02:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if or (not $.HasComments) $.hidden}}
|
2023-09-24 22:31:58 +02:00
|
|
|
<button type="button" class="ui submit tiny basic button btn-cancel cancel-code-comment">{{ctx.Locale.Tr "cancel"}}</button>
|
2018-08-06 06:43:22 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|