summaryrefslogtreecommitdiff
path: root/tbc/forms.py
diff options
context:
space:
mode:
authorkinitrupti2016-10-04 12:01:02 +0530
committerkinitrupti2016-10-04 12:01:02 +0530
commit15ab83ff1b57dab493ac366d866f3e26765599eb (patch)
tree0a9364c4c3c8b38182a2bfda3b97f859c084affe /tbc/forms.py
parentc5c3c7b6c4794d960ead6137d251cd9b8f423aa4 (diff)
downloadPython-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.py2
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'}),