Hi
but the
-- I just face this same issue and stuck in it for few days, than find out the TEMPLATE_LOADERS setting,
by default it has two way to find templates:
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader'
but the
'django.template.loaders.eggs.Loader',
is disable by default,
so, just add these codes to setting.py
TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', 'django.template.loaders.eggs.Loader')than it works fine :)
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+unsubscribe@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.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/f18e170d-09f1-4758-8261-f216aae40e0a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment