Subpages template option

Hello everyone,

I have a blueprint and I want sub-pages of this blueprint use only a specific template.

How to restrict child templates in blueprint when using preset: pages ?
Because, following configuration works perfectly with preset: page, but not with preset: pages:

title: Template A
preset: pages
pages:
  template: template-b

P.-S. Also, using preset: pages displays only Draft and Published pages but still allow selecting Unlisted status and if used then pages just “disappears” from display. So I don’t really understand this preset. I would be happy with any help on this. I read the documentation, but there are things I don’t get.

OK, solved:
I don’t know where is it in documentation, but when using preset: pages it’s just:

title: Template A
preset: pages
template: template-b

About that, I believe since preset: page is configured to have the 3 status Draft, Unlisted and Listed, preset: pages should by default displays all 3 sections not only Draft and Listed

Hey – I hope someone can help me out.
I have a page called exhibitions, where editors can add projects called exhibition.
In my exhibitions.yml:

title: Exhibitions
preset: pages
template: exhibition

And when I want to add an exhibition, it still shows every other template. How do I solve this?
I only want to show exhibition greyed out.

Thanks in advance :slight_smile:
E

GOT IT. What ever, in my case I have to write

title: Exhibitions
preset: pages
templates:
  - exhibition

to make it work.