Django在模板之外人性化?

时间:2013-06-21 02:22:00

标签: python django django-templates

我知道我可以使用humanize模块将日期/时间转换为更友好的格式。我想知道我是否可以在views.py函数中转换这些东西(意味着在django模板之外)。

1 个答案:

答案 0 :(得分:41)

是的,你可以

假设您想在naturalday中致电views.py

from django.contrib.humanize.templatetags.humanize import naturalday
natural_day = naturalday(value)

您可以参考source code here签名和选项