Files

25 lines
1016 B
Handlebars
Raw Permalink Normal View History

{{$useMarkdownEditor := not .item.Attributes.render}}
2024-03-24 19:23:38 +01:00
<div class="field {{if not .item.VisibleOnForm}}tw-hidden{{end}} {{if $useMarkdownEditor}}combo-editor-dropzone{{end}}">
2022-09-02 15:58:49 +08:00
{{template "repo/issue/fields/header" .}}
{{/* the real form element to provide the value */}}
<textarea class="form-field-real" name="form-field-{{.item.ID}}" placeholder="{{.item.Attributes.placeholder}}" {{if and .item.Validations.required}}required{{end}}>{{.item.Attributes.value}}</textarea>
{{if $useMarkdownEditor}}
{{template "shared/combomarkdowneditor" (dict
"CustomInit" true
2024-03-24 19:23:38 +01:00
"ContainerClasses" "tw-hidden"
2026-03-07 21:37:37 +01:00
"MarkdownEditorContext" (ctx.MiscUtils.MarkdownEditorComment ctx.RootData.Repository)
"TextareaContent" .item.Attributes.value
"TextareaPlaceholder" .item.Attributes.placeholder
"DropzoneParentContainer" ".combo-editor-dropzone"
)}}
{{if .root.IsAttachmentEnabled}}
2024-03-24 19:23:38 +01:00
<div class="tw-mt-4 form-field-dropzone tw-hidden">
{{template "repo/upload" .root}}
</div>
{{end}}
{{end}}
2022-09-02 15:58:49 +08:00
</div>