Tying in to Django Admin's Model History

Posted by akdom on Stack Overflow See other posts from Stack Overflow or by akdom
Published on 2009-06-12T16:32:47Z Indexed on 2010/05/03 11:18 UTC
Read the original article Hit count: 422

The Setup:

  • I'm working on a Django application which allows users to create an object in the database and then go back and edit it as much as they desire.
  • Django's admin site keeps a history of the changes made to objects through the admin site.

The Question:

  • How do I hook my application in to the admin site's change history so that I can see the history of changes users make to their "content" ?

© Stack Overflow or respective owner

Related posts about django

Related posts about django-admin