cyberdelia / manifesto

Pluggable cache manifest for Django

Home Page:https://manifesto.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TemplateDoesNotExist

ferllings opened this issue · comments

Hello with Django 1.4 I receive this issue:

TemplateDoesNotExist at /manifest.appcache

manifesto/manifest.appcache

Request Method:     GET
Request URL:    http://192.168.5.251:40404/manifest.appcache
Django Version:     1.4
Exception Type:     TemplateDoesNotExist
Exception Value:    

manifesto/manifest.appcache

Exception Location:     /usr/lib/python2.7/site-packages/Django-1.4-py2.7.egg/django/template/loader.py in select_template, line 193
Python Executable:  /usr/bin/python
Python Version:     2.7.3

Is manifesto is in your INSTALLED_APPS settings and is django.template.loaders.app_directories.Loader is in your TEMPLATE_LOADERS settings too ?

Yes, both parameters are correctly set, and "app_directories.Loader" is working for other apps.

I've just added some tests, it seems to be working : http://travis-ci.org/#!/cyberdelia/manifesto/builds/2107958

I found the issue: manifesto has been installed as 'manifesto-0.3.3-py2.7.egg', and I was missing ''django.template.loaders.eggs.Loader'.

Thanks for your help.