Django 0.97 filter for admin dashboard

2023-09-04 Thread Israr Hussain Rao
Hello Django developer, I am working on very old django version 0.97 because the system was developed long time ago and i am creating a new application by using new version, because updating from 0.97 to 4.1 is i don't know how much it is practically possible. In short, I need to create a filter

Django language support

2023-09-04 Thread SUNIL PATEL
i want to build app for hindi marathi bengali udia tamil etc native languages of india.Does Django provide this?if not than how can i achieve this with django -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Django security releases issued: 4.2.5, 4.1.11, and 3.2.21

2023-09-04 Thread Mariusz Felisiak
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2023/sep/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

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-09-04 Thread Michal Plsek
Just register post_update signal with the Model you want to "watch" to be created/updated, and in optimal case send message to some asynchronous queue, which will take message 15 minutes late and processes it by creating Notification object. For example async queue = aws sqs, they even support