[Django]-What's the best way to track changes to a model in Django?

2👍

You can track values changes with built-in model signals, like https://docs.djangoproject.com/en/1.9/ref/signals/#module-django.db.models.signals

Leave a comment