Answer the question
In order to leave comments, you need to log in
Django date localization?
Tell me how to display the date so that the format is in English, I output it like
this
<time class="timeago" datetime="{{user.date_joined|date:'r'}}"></time>
<time class="timeago" datetime="Вт, 22 Май 2018 21:36:33 +0300"></time>
<time class="timeago" datetime="Sat, 22 May 2018 21:36:33 +0300"></time>
Answer the question
In order to leave comments, you need to log in
{% load i18n %}
{% language 'en' %}
{{user.date_joined|date:'r'}}
{% endlanguage %}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question