How to pass the "render_to_response arguments" to an new view?
def show_list(request, id):
try:
profile = request.user.get_profile()
list = Lista.objects.get(user_profile = profile)
except Lista.DoesNotExist:
c = {}
c.update(csrf(request))
titlepage = "ooops, you don't have a list YET! click on button to create one!"
c = {'profile' : profile, 'request' : request, 'titlepage' : titlepage}
return render_to_response('/profiles/list/create/',c,context_instance=RequestContext(request))
with this last line this doesn't work, the url /profiles/list/create/ redirects to a view create_list.
Well, I know that I could write something like redirect(/profiles/list/create/) but with this I cannot pass the dictionary c.
Thanks in advance