While setting up the django-registration module I have run into a bit of trouble. Everything works correctly as far as rendering templates. After trying to test-register I am hit with this error. I do have Django.contrib.humanize in the settings.py file. Any help is appreciated
Asked
Active
Viewed 1.6k times
25
-
1You should post your ``INSTALLED_APPLICATIONS`` setting, the traceback for the error, and your template code. – jterrace Mar 02 '12 at 18:44
-
Will do on on future questions. I wrote this question out of fustration. – Frantz Romain Mar 03 '12 at 00:42
-
Didn't work for me either after trying to use it for the first time. Forgot to restart the server :) – aliteralmind Sep 18 '14 at 19:27
1 Answers
58
As the docs say:
To activate these filters, add 'django.contrib.humanize' to your INSTALLED_APPS setting.
So perhaps you should have "django." not "Django." ? See Django docs on django.contrib.humanize
Also do you have "{% load humanize %}" in the templates? You may also want to look at TemplateSyntaxError: 'settings_tags' is not a valid tag library
-
I do have in templates but the capital D threw it off. Thanks bunches. – Frantz Romain Mar 02 '12 at 19:38