So I have an object mydate If I use the following tag :
所以我有一个对象mydate如果我使用以下标记:
{{mydate}}
It gives me the datetime according to my timezone, but if I use
{{mydate}}它根据我的时区给出了日期时间,但是如果我使用的话
{{mydate.hours}} or {{mydate.minute}}
{{mydate.hours}}或{{mydate.minute}}
it gives the hours and minute according to UTC.
它根据UTC给出小时和分钟。
Am I missing out on something ??
我错过了什么?
1 个解决方案
#1
0
You must use django date filter
您必须使用django日期过滤器
so you format date as you need, for example
例如,您可以根据需要格式化日期
{{ my_date|date:"D d M Y" }}
#1
0
You must use django date filter
您必须使用django日期过滤器
so you format date as you need, for example
例如,您可以根据需要格式化日期
{{ my_date|date:"D d M Y" }}