I want to change the timezone just within the one Particular Model in Django admin, how can I do that?
As Django saves time in the database in UTC, what I want is to display the value in a particular timezone, just for one model. Not for the whole project.
For example I have a model:
class Student(models.Models)
created_at = models.DateTimeField()
When I open Django Admin for this model, I want to see the time in a particular timezone (let's say ETC) but let the Django save time in UTC.