diff options
author | hardythe1 | 2014-02-10 15:23:28 +0530 |
---|---|---|
committer | hardythe1 | 2014-02-10 15:23:28 +0530 |
commit | f26211029f8847f5ee7e55922391160475112605 (patch) | |
tree | edb2652f58d2b61d8548a7c1f7493479d0ec53bd /tbc | |
parent | 28380179cafc84b346ade607f4dac2fe75cb6073 (diff) | |
download | Python-TBC-Interface-f26211029f8847f5ee7e55922391160475112605.tar.gz Python-TBC-Interface-f26211029f8847f5ee7e55922391160475112605.tar.bz2 Python-TBC-Interface-f26211029f8847f5ee7e55922391160475112605.zip |
adding placeholder for dob
Diffstat (limited to 'tbc')
-rw-r--r-- | tbc/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tbc/forms.py b/tbc/forms.py index c187a9a..cf99afc 100644 --- a/tbc/forms.py +++ b/tbc/forms.py @@ -19,6 +19,7 @@ class UserProfileForm(forms.ModelForm): exclude = ('user') widgets = { 'about':forms.TextInput(attrs={'placeholder':'Tell us about yourself'}), + 'dob':forms.TextInput(attrs={'placeholder':'mm/dd/yyyy'}), 'insti_org':forms.TextInput(attrs={'placeholder':'Name of University/Organizaiton(if corporate)'}), 'dept_desg':forms.TextInput(attrs={'placeholder':'Name of the Department/Branch or your designation'}), 'phone_no':forms.TextInput(attrs={'placeholder':'Phone Number Please'}), |