13 lines
645 B
Cheetah
13 lines
645 B
Cheetah
{{define "form_input_string"}}
|
|
{{ $fullProperty := getFullProperty .Parent .Property }}
|
|
{{ $value := getValue .Defaults .Values $fullProperty }}
|
|
{{/* <input type="text"
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5"
|
|
name="{{ $fullProperty }}"
|
|
id="{{ $fullProperty }}"
|
|
value="{{ $value }}" /> */}}
|
|
<textarea
|
|
name="{{ $fullProperty }}"
|
|
id="{{ $fullProperty }}"
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5">{{ $value }}</textarea>
|
|
{{end}} |