I have a queryste:
winner_check = Winner.objects.filter(win_date=date.today())
where win_date is datetime and date.today() gives only date... Is there anyway that I can convert win_date to only date and filter this queryset.
I want to filter all the winners which have same date.
Thanks in advance.