django import timezone from datetime code example
Example: django datetime field timezone
if you need timezone input from your user,
you will need to set USE_TZ = False in setting.py
then use DateTimeField which is naive datetime
along with CharField to store timezone information in your models.py.