summaryrefslogtreecommitdiff
path: root/tbc/forms.py
diff options
context:
space:
mode:
authorTrupti Rajesh Kini2016-09-26 14:55:22 +0530
committerGitHub2016-09-26 14:55:22 +0530
commitb32b399ab5691d7b24bf0f7ca83affd64d6ee1e7 (patch)
tree8b7b0f8c57491998feee1c12e1cefce36b710075 /tbc/forms.py
parentf87690ed660222a4e2403bced62528ac7ad8a4dd (diff)
downloadPython-TBC-Interface-b32b399ab5691d7b24bf0f7ca83affd64d6ee1e7.tar.gz
Python-TBC-Interface-b32b399ab5691d7b24bf0f7ca83affd64d6ee1e7.tar.bz2
Python-TBC-Interface-b32b399ab5691d7b24bf0f7ca83affd64d6ee1e7.zip
placeholder for start time and end time
Diffstat (limited to 'tbc/forms.py')
-rw-r--r--tbc/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbc/forms.py b/tbc/forms.py
index 1aa1e6c..aa3b477 100644
--- a/tbc/forms.py
+++ b/tbc/forms.py
@@ -71,6 +71,6 @@ class BookForm(forms.ModelForm):
'edition':forms.TextInput(attrs={'placeholder':'Edition of the Book'}),
'year_of_pub':forms.TextInput(attrs={'placeholder':'Year when the Book was published'}),
'no_chapters':forms.TextInput(attrs={'placeholder':'Total number of chapters in the Book (only include chapters that have solved examples)'}),
- 'start_time': forms.DateInput(attrs={'class':'datepicker'}),
- 'end_time': forms.DateInput(attrs={'class':'datepicker'}),
+ 'start_time': forms.DateInput(attrs={'class':'datepicker', 'placeholder':'mm/dd/yyyy'}),
+ 'end_time': forms.DateInput(attrs={'class':'datepicker', 'placeholder':'mm/dd/yyyy'}),
}