Display the history of an object in two apps together in django admin

Question:

I have two apps (profiling and ticketing) the ticketing app has three models in names of member,ticket,comment, and the profiling app has one model in name of profile. I do some changes on an profile object via profiling app it displays on profile model history but if I change that object via "inline" from another model the history displays on that model not profile model. I want that history will be displays completly in two models.

enter image description here

enter image description here

Asked By: Farbod Khalili

||

Answers:

I used ‘django-simple-history’ and it solved my problem ,
this was exactly what I needed: "https://django-simple-history.readthedocs.io/en/latest/admin.html"

Answered By: Farbod Khalili