Skip to content

Instantly share code, notes, and snippets.

@milin
Created March 29, 2011 18:40
Show Gist options
  • Save milin/892963 to your computer and use it in GitHub Desktop.
Save milin/892963 to your computer and use it in GitHub Desktop.
try:
next = '/dashboard/'
if('redirect' in request.session):
next = request.session['redirect']
del request.session['redirect']
twitter = Client_Twitter.objects.get(user=request.user.get_profile())
#return HttpResponseRedirect('/account/login?next='+next)
return HttpResponseRedirect(next)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment