-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Template not found "base.html" #19
Comments
Hi! 2013/8/11 schamhaartoupee notifications@github.com
|
I had the same error message, even though I was settings I finally traced it down to the context processor not being invoked, so the var was not there. In my project, I'm using i18n, so I need to set
I needed to add imagestore's context processor:
I think the need to plug in imagestore's context processor is something that would be good to add to the documentation. (This is with Django 1.4, which I have to run for annoying non-technical reasons) |
i think, you need call base.html file in all file : {% extends '../base.html' %} |
Hello,
maybe i don't get it, but i have an issue trying out imagestore.
I use it with django-cms and tried to make a simple gallery, all settings default.
I get this error when i try to open the gallery
Exception Type: TemplateDoesNotExist
Exception Value: base.html
Error during template rendering
In template /home/jonni/Projekte/fotoladen/lib/python2.7/site-packages/imagestore/templates/imagestore/base.html, error at line 1
base.html
1 {% extends IMAGESTORE_TEMPLATE|default:"base.html" %}
2 {% load i18n %}
3 {% load url from future %}
4
5 {% block head %}
6 {% if IMAGESTORE_LOAD_CSS %}
7
8 {% endif %}
9 {% endblock %}
10
11 {% block breadcrumb %}
I don't get it: the template "base.html" is trying to extend from itself?
What am i thinking wrong?
The text was updated successfully, but these errors were encountered: