inizia con questo:
from django.utils import timezone
local_dt = timezone.localtime(item.created_at, pytz.timezone('Europe/Berlin'))
Per convertire in UTC+1:
from django.utils import timezone
local_dt = timezone.localtime(item.created_at, timezone.get_fixed_timezone(60))
- Come ottenere l'ora locale nel fuso orario corrente (seconda domanda )
- localtime()
- get_fixed_timezone()