Im using the auto_now_add field for DateTimeField in django and I'm displaying a date like this 2019-05-08T09:23:09.424129Z
and I want to convert it to this format {YYYY-MM-DD} {HH:MM AM/PM}
without changing the model since we are in production.
Most of the examples I found on the web require you to add something in the model any workarounds?
Model:
created = models.DateTimeField(auto_now_add=True, null=True)