From f26211029f8847f5ee7e55922391160475112605 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 10 Feb 2014 15:23:28 +0530 Subject: adding placeholder for dob --- tbc/forms.py | 1 + 1 file changed, 1 insertion(+) 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'}), -- cgit