Advertisement
Guest User

Untitled

a guest
Jul 21st, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. user = user_form.save(commit=False)
  2. profile = profile_form.save(commit=False)
  3.  
  4. password = user_form.cleaned_data['password']
  5.  
  6. user.set_password(password)
  7. user.is_active = False
  8. user.is_staff = True
  9. user.save()
  10.  
  11. about = profile_form.cleaned_data['about']
  12. user.profile.about = about
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement