Re: Django Admin base.html error

2012-02-25 Thread Timothy Makobu
That was it. Thanks a bunch. On 2/26/12, donarb wrote: > Try this first. Check your urlconf and make sure that all routes lead > to actual methods. Like if you have a url that points to something > like myapp.views.index, make sure that there is actually an index > method in views.py. > > This er

Re: Django Admin base.html error

2012-02-25 Thread donarb
Try this first. Check your urlconf and make sure that all routes lead to actual methods. Like if you have a url that points to something like myapp.views.index, make sure that there is actually an index method in views.py. This error bites everyone eventually, since people get ahead of themselves