Noel James
Noel James
For me does not occur on `list` just `retrieve` and the first clue to the error i got was ``` 'datetime.date' object has no attribute 'utcoffset' ``` In my `settings.py`...
Some other odd things i noticed was that in `retrieve` nested objects were not effect by this and, it wasn't an issue in `list`. IMHO I don't think having this...
Here is a sample that worked for me ``` curl -X POST \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ -d '{"width": 500, "height": 500, "data": [{"country": "AD", "hot...
Not sure what your looking for. But, I hope this helps Create a Model base class and add the history attribute ```python class CommonBaseModel(models.Model): history = HistoricalRecords( inherit=True, bases=[RoutableModel, ]...