1

I try to use localdatetime in my template twig file, but I get an error that localdatetime does not exists:

Unknown "localizeddate" filter. Did you mean "localdate" in "listing.twig" at line 51?

However when I look into the code, the TwigExtension class is already there and defines the localdatetime Twig_SimpleFilter too.

So I cannot see why I cannot use them in the code. Do someone know whats going on?

This is my twig template code:
{{ record.datepublish | localizeddate('full', 'none', app.request.locale ) }}

DelphiLynx
  • 911
  • 1
  • 16
  • 41

1 Answers1

0

Use localedatetime instead of localizeddate or localdatetime.

Jarek Jakubowski
  • 948
  • 10
  • 22