Skip to content

Instantly share code, notes, and snippets.

@KhanMaytok
Created November 21, 2019 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KhanMaytok/6514edaf88011e7d6ff7f2a98db9a9c9 to your computer and use it in GitHub Desktop.
Save KhanMaytok/6514edaf88011e7d6ff7f2a98db9a9c9 to your computer and use it in GitHub Desktop.
Django snippets
# 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