hi thanks for the reply i am trying to get django up and running with
googleapp engine as. i understand in django correct me if i am wrong
return is a global variable when a url is matched as defined in the
url.py it calls the class that is matched in views.py and all the
variables are passed in request object. so i am bit confused why i am
getting the error. have i miss configured some thing some how ? below
is my urls.py if its any help
from django.conf.urls.defaults import *
from portfolio.models import Project
info_dict = {
'queryset': Project.all()
}
urlpatterns = patterns('',
# Example:
# (r'^foo/', include('foo.urls')),
(r'^work/$', '
portfolio.views.work'),
# Uncomment this for admin:
# (r'^admin/', include('django.contrib.admin.urls')),
)