formwork/panel/modals/newPage.yaml

45 lines
956 B
YAML
Raw Normal View History

2024-05-18 00:14:49 +02:00
title: '{{panel.pages.newPage}}'
action: /pages/new/
2024-05-16 23:02:05 +02:00
fields:
title:
type: text
label: '{{page.title}}'
2024-05-16 23:02:05 +02:00
required: true
slug:
2024-10-27 14:28:39 +01:00
type: slug
label: '{{page.slug}}'
suggestion: '{{page.slug.suggestion}}'
2024-05-16 23:02:05 +02:00
required: true
pattern: '^[a-z0-9\-]+$'
2024-10-27 14:28:39 +01:00
source: title
root: parent
2024-05-16 23:02:05 +02:00
parent:
type: page
label: '{{page.parent}}'
2024-10-13 16:53:56 +02:00
collection@: site.descendants.allowingChildren
2024-05-16 23:02:05 +02:00
required: true
allowSite: true
template:
type: template
label: '{{page.template}}'
2024-05-16 23:02:05 +02:00
required: true
default@: site.get('defaultTemplate', 'default')
2024-05-18 00:14:49 +02:00
buttons:
dismiss:
action: dismiss
icon: times-circle
label: '{{panel.modal.action.cancel}}'
variant: secondary
submit:
action: submit
icon: check-circle
label: '{{panel.modal.action.continue}}'
align: right