naturaltime django code example
Example 1: django humanize
INSTALLED_APPS = [
'django.contrib.humanize',
]
{% load humanize %}
apnumber - 1 becomes one.
intcomma - 4500 becomes 4,500.
intword - 1000000 becomes 1.0 million.
naturalday - 16 Feb 2007 becomes yesterday.
naturaltime - 17 Feb 2007 16:30:00 becomes now.
ordinal - 1 becomes 1st.
Example 2: {% load humanise %}
django.contrib.humanize¶
A set of Django template filters useful for adding a “human touch” to data.
To activate these filters, add 'django.contrib.humanize' to your INSTALLED_APPS setting. Once you’ve done that, use {% load humanize %} in a template, and you’ll have access to the following filters.