Hello,
I have a datetime object at my model. I am sending it to the view, but in html i don't know what to write in order to format it.
I am trying
{{ item.date.strftime("%Y-%m-%d")|escape }}
but I get
TemplateSyntaxError: Could not parse some characters: item.date.strftime|("%Y-%m-%d")||escape
when I am just using
{{ item.date|escape }}
it's working, but now with the format I want.
Any suggestions?