I have this variable:
{{ video.pub_date }}
which outputs:
May 16, 2011, 2:03 p.m.
How can I get it to sho
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,
{% load humanize %}
{{comment.timestamp | naturaltime }}