Trung Vu
Trung Vu

Reputation: 531

twig format date (displaying 1 instead of 01)

currently I'm using this setting:

twig:
    date:
        format: d. m. Y
        interval_format: '%%d days'

How do I change it?

Upvotes: 0

Views: 2298

Answers (1)

qooplmao
qooplmao

Reputation: 17759

Twig uses the same formatter at supported by date.

To get the day of the month without the leading zero you can use j.

Upvotes: 2

Related Questions