extend base.html problem

Posted by momo on Stack Overflow See other posts from Stack Overflow or by momo
Published on 2010-06-17T23:48:26Z Indexed on 2010/06/17 23:53 UTC
Read the original article Hit count: 320

Filed under:
|
|

I'm getting the following error:

Template error

In template /home/mo/python/django/templates/yoga/index.html, error at line 1
Caught TemplateDoesNotExist while rendering: base.html
1 {% extends "base.html" %}
2 
3 {% block main %}
4     <p>{{ page.title }}</p>
5     <p>{{ page.info}}</p>
6     <a href="method/">Method</a>
7 {% endblock %}
8 

this is my base.html file, which is located at the same place as index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <div style="width:50%; marginleft:25%;">
    {% block main %}{% endblock %}
    </div>

what exactly is going on here? should the base.html file be located somewhere else?

© Stack Overflow or respective owner

Related posts about django

Related posts about templates