Can anyone explain the difference between 'django.db.models.functions.Now' and 'django.utils.timezone.now'?
For example, am I correct that functions.Now() returns the system time without timezone stamp, and timezone.now() would return UTC timestamp?
When I use print(timezone.now()) I get the expected timestamp however when I print(functions.Now()) I get a blank string. Why is this?
In what circumstances is it appropriate to use one method over the other?