Guest User

Untitled

a guest
Jan 4th, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class UserForm(forms.ModelForm):
  2. class Meta:
  3. model = User
  4.  
  5.  
  6. class ProfileRegisterView(FormView):
  7. template_name = 'profile-register-form.html'
  8. form_class = UserForm
  9. success_url = '/account/created/'
  10.  
  11. AUTH_PROFILE_MODULE = "creative_profile.Profile"
Add Comment
Please, Sign In to add comment