File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
docs/templates/fieldtypes Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ You can use a single variable for Checkboxes to render a comma-separated list of
11
11
12
12
{% for label, value in entry.checkbox_field.options %}
13
13
{{ label }} - {{ value }}
14
- {%endfor}
14
+ {% endfor % }
15
15
16
16
{% for label, value in entry.checkbox_field.selected %}
17
17
{{ label }} - {{ value }}
18
- {%endfor}
18
+ {% endfor % }
19
19
```
20
20
21
21
## Parameters
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ You can use a single variable for Multi Select to render a comma-separated list
11
11
12
12
{% for label, value in entry.multi_select.options %}
13
13
{{ label }} - {{ value }}
14
- {%endfor}
14
+ {% endfor % }
15
15
16
16
{% for label, value in entry.multi_select.selected %}
17
17
{{ label }} - {{ value }}
18
- {%endfor}
18
+ {% endfor % }
19
19
```
20
20
21
21
## Parameters
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ Radio Buttons allow users to choose a single item from a list of options.
7
7
8
8
{% for label, value in entry.radio.options %}
9
9
{{ label }} - {{ value }}
10
- {%endfor}
10
+ {% endfor % }
11
11
12
12
{% for label, value in entry.radio.selected %}
13
13
{{ label }} - {{ value }}
14
- {%endfor}
14
+ {% endfor % }
15
15
```
16
16
17
17
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ Select Dropdown fields allow publishers to choose a single item from a dropdown
7
7
8
8
{% for label, value in entry.select.options %}
9
9
{{ label }} - {{ value }}
10
- {%endfor}
10
+ {% endfor % }
11
11
12
12
{% for label, value in entry.select.selected %}
13
13
{{ label }} - {{ value }}
14
- {%endfor}
14
+ {% endfor % }
15
15
```
16
16
17
17
## Parameters
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ Selectable Button fields allow publishers to choose either multiple or single it
7
7
8
8
{% for label, value in entry.buttons.options %}
9
9
{{ label }} - {{ value }}
10
- {%endfor}
10
+ {% endfor % }
11
11
12
12
{% for label, value in entry.buttons.selected %}
13
13
{{ label }} - {{ value }}
14
- {%endfor}
14
+ {% endfor % }
15
15
```
16
16
17
17
## Parameters
You can’t perform that action at this time.
0 commit comments