So I have some okayish hacky ways to do get this working but roughly I have one field, a DateRangeField, but want to have the user choose two things, a year (from a dropdown) and a quater (as radio buttons).
So for the user the querystring would end up as ?year=2024&quater=1.
But struggling to find a way to get django-filter to do it. I have a feeling I need to override the form and use a MultiWidget, but not sure how that would affect the querystring or work with django-filter. Anyone done something like this?