Closed Nagasaki45 closed 10 years ago
This is because Django does not like naive date/time (i.e. one that does not mention which timezone it's in).
Use pytz to localize()
the timestamp to Israeli timezone. See http://pytz.sourceforge.net/#localized-times-and-date-arithmetic
Thanks a lot! It was an easy fix after knowing how to work with pytz. I've also updated the unicode function of the Record model to represent local time.
Fix the "naive datetime" warning.