1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
---
id: form
auto_fieldset: 1
multiform_hidden_name: crypt
crypt_args:
-key: 'my secret'
forms:
# form 1
-
indicator: foo
elements:
- name: foo
- type: Block
nested_name: block
elements:
- name: foo
- type: Submit
name: submit
# form 2
-
indicator: bar
elements:
- type: Hidden
name: crypt
- name: bar
- type: Block
nested_name: block
elements:
- name: bar
- type: Submit
name: submit
# form 3
-
indicator: baz
elements:
- type: Hidden
name: crypt
- name: baz
- type: Block
nested_name: block
elements:
- name: baz
- type: Submit
name: submit
|