I\'m saving datetime in the db for an object. I\'d like to query against the db and select anything from todays date, not datetime.
datetime
date
What\'s the
You can also do something like this:
today = date.today() invoice_for_today = Invoice.objects.filter(date__year=today.year, date__month=today.month, date__day=today.day)