Changes between Initial Version and Version 1 of Ticket #5986, comment 24


Ignore:
Timestamp:
Oct 7, 2014, 10:34:13 AM (10 years ago)
Author:
Collin Anderson

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5986, comment 24

    initial v1  
    33{{{
    44class UserProfileForm(UserForm):
    5     first_name = forms.CharField(max_length=30, weight=-1)
    6     last_name = forms.CharField(max_length=30, weight=-1)
     5    first_name = forms.CharField(max_length=30)
     6    last_name = forms.CharField(max_length=30)
    77    username = UserForm.base_fields['username']
    88    password = UserForm.base_fields['password']
Back to Top