Re: How to monitor content updates or deletion in Django web applications

2023-10-04 Thread Timothy Myers
I am also not sure of the scope of your question. If you're asking about a file deleted from the system by a method other than Django. I use a trusted database of files required with a hash and have a process (Django script) that runs and checks both the presence of a file and its hash code.

Re: How to monitor content updates or deletion in Django web applications

2023-10-04 Thread David Nugent
Yes, certainly worth mentioning. ContentTypes is the secret sauce in django admin for sure and extremely useful for building generic functionality without hard coding to specific models. It’s like a through table in a relational db, where entities can be tracked. And it’s all automatic, built into

Re: How to monitor content updates or deletion in Django web applications

2023-10-04 Thread Ruby
Hi there, I don't know if there's a library for that, but I believe you can build what you need using the built-in Django Content-Type I have used it a few times and Django admin site also uses it under the hood. On Wed, Oct 4, 2

Re: How to monitor content updates or deletion in Django web applications

2023-10-03 Thread David Nugent
The may not be enough context in your question but I imagine that the following link may take you to something that may work for you. https://docs.djangoproject.com/en/4.2/topics/signals/ On 4 October 2023 at 14:42:45, Ram (ram.mullap...@gmail.com) wrote: > Hi, > > We would like to add this feat