I wonder if it is possible for django's admin site to accept two datetime fields of one model in two different timezones.
For example suppose I have a model like:
class A(models.Model):
time_a = models.DateTimeField()
time_b = models.DateTimeField()
When I use the django's admin site to add or edit an instance of A, I wish I may fill field time_a in UTC+8, and time_b in UTC+9. i.e. If I fill time_a with 08:00 and time_b with 09:00, they are the same in UTC.
I know that I may override A's save() method and handle inputs manually with doing the timedelta calculation myself, but I wonder if there is a more convenient way or more proper way to do this.