Hey there,
I have the intl-DateFormatter activated in my config. In the page table in the panel I am showing events and want to display the start and due date. Somehow the date is formatted randomly for some events.
This is the blueprint for the pageTable:
type: pages
layout: table
template: event
columns:
startDate:
label: Start
value: " {{ page.startDate.toDate('dd.MM.yyyy') }} "
width: 1/6
endDate:
label: Ende
value: "{{ page.endDate.toDate('dd.MM.yyyy') }}"
width: 1/6
All dates in the event.txt files are stored like this:
Startdate: 2025-07-03
----
Enddate: 2024-06-22
Has someone any idea?
Greets