Hello! Does anyone work a lot with django-simple-history in their projects? I want to have a template view where I can display all the changes that have been made (not using django-admin interface).
I have defined a model and using history = HistoricalRecords() on that model.
Now I would want to display the changes that have been made on that model in my template, but I'm not exactly sure how to set this up. My end goal would be to have a table that loops over all the changes that have been made, so if I have a table of Cars, I would also like to have a "history" column in that table, and if I click on a specific car it redirects me to another view with all the history regarding that car. And let's say the car name has been changes, I only want to display that.
For example - Tezla has been change to Tesla then the table row would display something like this: Tezla ----> Tesla.
Thanks for any help.