You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

comment_tab.tmpl 705B

123456789101112131415161718192021
  1. {{$textareaContent := .BodyQuery}}
  2. {{if not $textareaContent}}{{$textareaContent = .IssueTemplate}}{{end}}
  3. {{if not $textareaContent}}{{$textareaContent = .PullRequestTemplate}}{{end}}
  4. {{if not $textareaContent}}{{$textareaContent = .content}}{{end}}
  5. <div class="field">
  6. {{template "shared/combomarkdowneditor" (dict
  7. "MarkdownPreviewUrl" (print .Repository.Link "/markup")
  8. "MarkdownPreviewContext" .RepoLink
  9. "TextareaName" "content"
  10. "TextareaContent" $textareaContent
  11. "TextareaPlaceholder" (ctx.Locale.Tr "repo.diff.comment.placeholder")
  12. "DropzoneParentContainer" "form, .ui.form"
  13. )}}
  14. </div>
  15. {{if .IsAttachmentEnabled}}
  16. <div class="field">
  17. {{template "repo/upload" .}}
  18. </div>
  19. {{end}}