In settings there are:
TIME_ZONE = 'Europe/Rome'
USE_TZ = True
USE_L10N = True
But everything with auto_now=True in DB is stored UTC, and in admin displayed the same UTC! How to force django format datetime correctly in UI or force to store everything in naive current time? Can loacales mess it up?
UPDATE: I found that simple as posiblle django app launched with runserver handles dates correctly, while on GAE not.