AdamJS
0
Q:

django humanize

# Add To Installed Apps.
INSTALLED_APPS = [ 
  'django.contrib.humanize',
]

# Top of HTML Page.
{% load humanize %}

# Filters 
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.
1
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.
0

New to Communities?

Join the community