There are an awful lot of date/datetime picker implementations out there. Are there any that integrate with Django and Crispy Forms particularly well, and how are they used?
django.forms.SelectDateWidget is simple and flexible:
date_field = forms.DateField( widget=forms.SelectDateWidget(years, months, empty_label) )
It even includes its own template file.