日期的默认格式
我知道 Django 过滤器“日期”,它允许在模板中格式化日期。
我知道我可以修改特定模型中特定字段的表示。
但是,当我有大型 Django 项目并且希望保持日期格式以一致的方式在模板中显示时 - 是否有可能通过设置来实现此目的?如果没有,还有其他可能吗?
我想到的最简单的解决方案是编写自己的模板标签来显示日期并使用它,但也许是我错过的明显的东西。
如果这个日期格式可以根据区域设置而变化,那就太好了......
I know about Django filter "date" which allows to format date in templates.
I know that I can modify representation of particular field in particular model.
But when I have big Django project and would like to keep format of date to show in template in consistent way - is there any possibility to achieve this with settings? If not, other possibilities?
The easiest solution which comes to my mind is to write own templatetag to show date and use it, but maybe is something obvious which I missed.
And It would be nice if this date of format could vary depends on locales...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保检查影响日期表示的设置。
特别是
DATE_FORMAT
和
DATETIME_FORMAT
< /a>Make sure to check the settings that affect the representation of dates.
Especially
DATE_FORMAT
and
DATETIME_FORMAT