Django humanize outside of template? Django humanize outside of template? python python

Django humanize outside of template?


Yes you can

Lets say you want to call naturalday in views.py you would do

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

You can refer to the source code here for the signature, and options