I have an aware datetime-object and want to return an aware datetime-string. However when I do
obj.strftime("%e %b %Y %H:%M:%S")
it returns a UTC-based string (even though TIME_ZONE
-setting is set right).
How can I get a localised datetime-string?
EDIT: I want the timezone of django to get applied