Hi,
I’m Grav beginner and I’d like to give to some editors an access only to checkbox options, preventing them to change the form structure and checkboxes labels.
I currently have this form
title: 'Inscription'
published: true
visible: true
form:
name: inscription
fields:
perso:
type: section
title: 'Personal information'
fields:
name:
label: Name
type: text
validate:
required: true
choices:
type: section
title: 'Select at least one case'
fields:
firstOption:
label: 'Option 1'
type: checkboxes
options:
0802-0808: '08-02 to 08-08 2026'
secondOption:
label: 'Option 2'
type: checkboxes
options:
0412-0418: '04-12 to 04-18 2026'
0419-0425: '04-19 to 04-25 2026'
Is it possible to create the date options from another file?