mirror of
https://github.com/Bornholm/formidable.git
synced 2025-01-10 15:49:33 +01:00
William Petit
e6258f37ac
Using the YAML encoder, Formidable is now capable of detecting et retagging ansible-vault [1] encrypted values. You can use the query parameter 'ansible_vault=no' to disable this behavior. [1] https://docs.ansible.com/ansible/latest/user_guide/vault.html
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}} |