I have the following two queries in my Django view:
current_events = user.ambassador_profile.first().events.all().filter(end_date__gt=now)
past_events = user.ambassador_profile.first().events.all().filter(end_date__lt=now)
I am not sure, but is there a better way to combine these. Currently, I am doing two queries in my database and I feel like that's wrong.