Im new in using Django, and i want to know if there is some way to have a multiple date selection from a calendar,
i have multiple days :
for example a day is :
[ 28 july 2009 8:30 – 28 july 17h00 ]
Is there any way to do this with Django Forms
Thanks a lot
kimo
I don’t believe this is supported out of the box, but should be doable through a custom widget and some associated media. See the source for the datetime widget and its associated media for the current implementation. You should be able to base your solution off that one. By combining two dates into a single widget/field, you can create a date range. Also see the source for the MultiValueField and its widget, respectively.