I'm having a bit of a problem, I uploaded my Django project to a webserver running apache, mod_python, and django. On the computer I developed on the following works fine
nameBox = getNamesBox().render(locals())
-
def getNamesBox():
users = User.objects.filter()
templateString = '<select name="name box">'
for user in users:
templateString += '<option value="' + user.name + '"> ' + user.name + '</option>'
templateString += '</select>'
template = Template(templateString)
return template
But on the web server, when running from apache or manage.py runserver, it says
AttributeError at /order_site/order/
'dict' object has no attribute 'render_context'
The code on both machines is identical so I feel like maybe its some other issue? It can't render my form and I don't know why.
The
render()
method on aTemplate
takes aContext
object as its argument, not a dict. You'll have to construct aContext
object from the dict, e.g.