Created
November 21, 2019 00:26
-
-
Save KhanMaytok/ff013edd7417ecf1c245dcc1163ff5e9 to your computer and use it in GitHub Desktop.
Django snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Select with today date | |
# timezone.now().today() | |
today = date.today() | |
invoice_for_today = Invoice.objects.filter(date__year=today.year, date__month=today.month, date__day=today.day) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment