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-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

Django security releases issued: 4.2.6, 4.1.12, and 3.2.22

2023-10-04 Thread Natalia Bidart
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2023/oct/04/security-releases/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an em

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.