mauler / django-grappelli-extensions

24 stars 12 forks source link

TemplateDoesNotExist at /admin/ grappelli:admin/base.html #8

Open xcriptus opened 10 years ago

xcriptus commented 10 years ago

Hi, first thank you very much for this package which looks so cool I tried to install grappelli-extensions with pip and python 2.7, django 1.6, grappelli 2.5.4, following the instructions in the readme (I then added grappelli_extensions in INSTALLED_APPS before grappelli as mentionned). Unfortunately when loading a page I get now the following error:

TemplateDoesNotExist at /admin/ grappelli:admin/base.html

grappelli:admin/base.html 1 {% extends "grappelli:admin/base.html" %}

I'm new to django and can't sort out what is the solution. If I remove grappelli_extensions from the path then every thing go back to normal. Did I missed something in the installation? Sorry, if this is a stupid question. I'm working on generating django websites from uml class diagrams and I don't know much about the target platform. Thanks

mauler commented 10 years ago

Check if django-apptemplates is installed and configured:

TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', 'apptemplates.Loader', )