Guest User

Untitled

a guest
Nov 22nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class EditProfileForm(UserChangeForm):
  2. template_name='/something/else'
  3.  
  4. class Meta:
  5. model = User
  6. fields = (
  7. 'email',
  8. 'first_name',
  9. 'last_name',
  10. **'password'**
  11. )
Add Comment
Please, Sign In to add comment