2019-01-23 18:58:38 +00:00
|
|
|
{{if and $.root.SignedUserID (not $.Repository.IsArchived)}}
|
2024-03-24 18:23:38 +00:00
|
|
|
<form class="ui form {{if $.hidden}}tw-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
|
|
|
|
"MarkdownPreviewUrl" (print $.root.Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" $.root.RepoLink
|
|
|
|
"TextareaName" "content"
|
2023-09-25 08:56:50 +00:00
|
|
|
"TextareaPlaceholder" (ctx.Locale.Tr "repo.diff.comment.placeholder")
|
2023-04-03 10:06:57 +00:00
|
|
|
"DropzoneParentContainer" "form"
|
2023-07-30 22:11:15 +00:00
|
|
|
"DisableAutosize" "true"
|
2023-04-03 10:06:57 +00:00
|
|
|
)}}
|
|
|
|
|
2024-02-25 06:00:55 +00:00
|
|
|
{{if $.root.IsAttachmentEnabled}}
|
|
|
|
<div class="field">
|
|
|
|
{{template "repo/upload" $.root}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
<div class="field footer tw-mx-2">
|
2024-03-26 11:19:15 +00:00
|
|
|
<span class="markup-info">{{svg "octicon-markdown"}} {{ctx.Locale.Tr "repo.diff.comment.markdown_info"}}</span>
|
2024-03-04 03:33:20 +00:00
|
|
|
<div class="tw-text-right">
|
2018-10-22 20:13:35 +00:00
|
|
|
{{if $.reply}}
|
2023-09-24 20:31:58 +00:00
|
|
|
<button class="ui submit primary tiny button btn-reply" type="submit">{{ctx.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-09-24 20:31:58 +00: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 04:43:22 +00:00
|
|
|
{{else}}
|
2023-09-24 20:31:58 +00: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 04:43:22 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if or (not $.HasComments) $.hidden}}
|
2023-09-24 20:31:58 +00:00
|
|
|
<button type="button" class="ui submit tiny basic button btn-cancel cancel-code-comment">{{ctx.Locale.Tr "cancel"}}</button>
|
2018-08-06 04:43:22 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|