Hello, I migrated a project from Kirby 2 some month ago and am now trying to add a panel interface.
The content I want to manage is structured like this :
/content/2_numeros/1_the-first-issue/1_the-first-article/article.txt
/2_article-n-two/article.txt
/3_...
/content/2_numeros/2_second-issue/1_first-article/article.txt
/2_...
my panel numero.yml
looks like that
title: Numero
columns:
left:
sections:
...
right:
sections:
articles:
type: pages
templates: article
info: "{{ page.titre }}, {{ page.auteur }}"
Article
pages created manually with the folder name 1_title/
, 2_title/
… can be reordered in the panel by drag and drop, but the pages I created with the panel cannot be reordered by drag and drop (or named with an underscore like others). Any idea how to fix this?