15 lines
413 B
Plaintext
15 lines
413 B
Plaintext
$newline never
|
|
|
|
$# SPDX-FileCopyrightText: 2022 Gregor Kleen <gregor.kleen@ifi.lmu.de>
|
|
$#
|
|
$# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
$case fieldKind
|
|
$of HtmlFieldNormal
|
|
<textarea id=#{theId} name=#{name} :isReq:required *{attrs}>
|
|
#{val'}
|
|
<p .explanation>
|
|
^{markdownExplanation}
|
|
$of HtmlFieldSmall
|
|
<input id=#{theId} name=#{name} *{attrs} type="text" :isReq:required value=#{val'}>
|