2👍
✅
You can use the __gte
filter
Event.objects.filter(date_from__gte=now).order_by('date')
Django’s ORM is smart enough to honor datetime v/s date
Source:stackexchange.com