aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/comment_tab.tmpl
blob: c40e6ddf32e8749ccba7eeaab894278d1779d166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{$textareaContent := .BodyQuery}}
{{if not $textareaContent}}{{$textareaContent = .IssueTemplate}}{{end}}
{{if not $textareaContent}}{{$textareaContent = .PullRequestTemplate}}{{end}}
{{if not $textareaContent}}{{$textareaContent = .content}}{{end}}

<div class="field">
	{{template "shared/combomarkdowneditor" (dict
		"locale" $.locale
		"MarkdownPreviewUrl" (print .Repository.Link "/markup")
		"MarkdownPreviewContext" .RepoLink
		"TextareaName" "content"
		"TextareaContent" $textareaContent
		"TextareaPlaceholder"  ($.locale.Tr "repo.diff.comment.placeholder")
		"DropzoneParentContainer" "form, .ui.form"
	)}}
</div>

{{if .IsAttachmentEnabled}}
	<div class="field">
		{{template "repo/upload" .}}
	</div>
{{end}}