Check that your 'homepage' app is above the 'registration' app:

INSTALLED_APPS = (
    'homepage',  # Order matters, this is loaded before others
    'registration',
    'django.contrib.auth',
   ...
)

Order of the apps is significant. Review

https://docs.djangoproject.com/en/dev/ref/templates/api/#django.template.loaders.app_directories.Loader

As a matter of personal style, I would put them in a project template 
folder and not in an app templates folder.

K



On Monday, September 2, 2013 7:01:30 PM UTC-7, Vibhu Rishi wrote:
>
> Essentially the below should work (and is working for all) as I have the 
> following template loader:
>
> TEMPLATE_LOADERS = (
>     'django.template.loaders.filesystem.Loader',
>     'django.template.loaders.app_directories.Loader',
> )
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to