user3633822
user3633822

Reputation: 49

How format date in flask using template

I have a list of dates in datetime format and i d'like formate this.

form example:

{% for date in dates %}
    {{date}}
{% endfor %}

Upvotes: 4

Views: 9801

Answers (1)

codegeek
codegeek

Reputation: 33309

You can use the python strftime function. It works in Jinja2.

{% for date in dates %}

    {{ date.strftime('%Y-%m-%d') }}

{% endfor %}

Upvotes: 12

Related Questions