I want to use django's selectDateWidget for a form but the options for years are from 2012-2021. I need to display past years and probably up to 1980. How can I modify selectDateWidget?
lessTime = forms.DateField(required=False, widget=SelectDateWidget())
Pass a
years
argument: