Missing projets in the panel blueprint

First time building a panel for my website; always managed it file based before.
I can’t figure out why it won’t show my two digits pages :frowning:
My code


    title: Site

columns:
  - width: 2/3
    sections:
      projet: sections/projets

  - width: 1/3
    sections:
      content:
        type: fields
        fields:
          author:
            label: Author
            type:  text
          description:
            label: Description
            type:  textarea
          keywords:
            label: Keywords
            type:  tags
          copyright:
            label: Copyright
            type: textarea

And the section code

    type: pages
    headline: Projets
    parent: kirby.page("projets")
    template: projet
    empty: No project yet
    sortBy: status

And here are my folder structure and current panel view.



Thanks for the help!

Do they all share the same template? And do they all have the language code extension?

1 Like

:man_facepalming: They indeed share two different template; and after some trial, I’m not sure how I can target both template with my project sections :confused:. This definitely doesn’t work:

type: pages
headline: Projets
parent: kirby.page("projets")
template: projet
template: projet-continu
empty: No project yet

If I understood correctly, try with templates: projet, projet-continu

The page section as the property templates. It filters the list by templates and sets template options when adding new pages to the section. But if you only have 2 templates and want to show them, you can remove templates from you blueprint.
More info in the reference: https://getkirby.com/docs/reference/panel/sections/pages#section-properties

1 Like

OMG, thanks so much :blue_heart:; I finally did it with

templates:
  - projet
  - projet-continu
1 Like