Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created March 15, 2011 17:01
Show Gist options
  • Save qoelet/871042 to your computer and use it in GitHub Desktop.
Save qoelet/871042 to your computer and use it in GitHub Desktop.
def activate_user(request, token):
# some preliminaries ...
user_profile.status_of_user = True
user_profile.token = ""
user_profile.save() # possibly hook on a post signal to handle any other cleanups etc.
return HttpResponseRedirect("/some/url/to/success/page")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment