How to display “This many months ago” in Django using Humanize?

后端 未结 3 1301
我在风中等你
我在风中等你 2021-01-04 08:18

I have this variable:

{{ video.pub_date }}

which outputs:

May 16, 2011, 2:03 p.m.

How can I get it to sho

3条回答
  •  时光说笑
    2021-01-04 08:30

    To activate what filter. adds 'django.contrib.humanize' to your INSTALLED_APPS setting,

    Once you’ve done that,

    use {% load humanize %} in a templates, and you’ll have access to the follow filters,

    {{comment.timestamp | naturaltime }}

提交回复
热议问题