I am trying to access an URL, and I get an error like this,

Traceback (most recent call last):

  File "C:\Python25.1\lib\site-packages\django\core\servers
\basehttp.py", line 277, in run
    self.result = application(self.environ, self.start_response)

  File "C:\Python25.1\lib\site-packages\django\core\servers
\basehttp.py", line 631, in __call__
    return self.application(environ, start_response)

  File "C:\Python25.1\lib\site-packages\django\core\handlers\wsgi.py",
line 205, in __call__
    response = self.get_response(request)

  File "C:\Python25.1\lib\site-packages\django\core\handlers\base.py",
line 108, in get_response
    return callback(request, **param_dict)

  File "C:\Python25.1\lib\site-packages\django\views\defaults.py",
line 80, in page_not_found
    return http.HttpResponseNotFound(t.render(RequestContext(request,
{'request_path': request.path})))

  File "C:\Python25.1\lib\site-packages\django\template\__init__.py",
line 176, in render
    return self.nodelist.render(context)

  File "C:\Python25.1\lib\site-packages\django\template\__init__.py",
line 751, in render
    bits.append(self.render_node(node, context))

  File "C:\Python25.1\lib\site-packages\django\template\__init__.py",
line 764, in render_node
    return node.render(context)

  File "C:\Python25.1\lib\site-packages\django\template
\loader_tags.py", line 71, in render
    compiled_parent = self.get_parent(context)

  File "C:\Python25.1\lib\site-packages\django\template
\loader_tags.py", line 66, in get_parent
    raise TemplateSyntaxError, "Template %r cannot be extended,
because it doesn't exist" % parent

TemplateSyntaxError: Template u'base.html' cannot be extended, because
it doesn't exist

So I cannot understand which template is extending 'base.html', from
the traceback. Also, he traceback shows up as raw traceback, not as
the formatted page which Django shows!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to