diff options
author | kinitrupti | 2016-10-04 12:01:02 +0530 |
---|---|---|
committer | kinitrupti | 2016-10-04 12:01:02 +0530 |
commit | 15ab83ff1b57dab493ac366d866f3e26765599eb (patch) | |
tree | 0a9364c4c3c8b38182a2bfda3b97f859c084affe /tbc/forms.py | |
parent | c5c3c7b6c4794d960ead6137d251cd9b8f423aa4 (diff) | |
download | Python-TBC-Interface-15ab83ff1b57dab493ac366d866f3e26765599eb.tar.gz Python-TBC-Interface-15ab83ff1b57dab493ac366d866f3e26765599eb.tar.bz2 Python-TBC-Interface-15ab83ff1b57dab493ac366d866f3e26765599eb.zip |
Upgraded to django 1.9
Diffstat (limited to 'tbc/forms.py')
-rw-r--r-- | tbc/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/forms.py b/tbc/forms.py index aa3b477..effe45b 100644 --- a/tbc/forms.py +++ b/tbc/forms.py @@ -16,7 +16,7 @@ class UserProfileForm(forms.ModelForm): self.fields['about_proj'].label = "How did you come to know about the project" class Meta: model = Profile - exclude = ('user') + exclude = ('user',) widgets = { 'about':forms.TextInput(attrs={'placeholder':'Tell us about yourself'}), 'dob':forms.TextInput(attrs={'placeholder':'mm/dd/yyyy'}), |