Re: Admin validation activated just once after final call to save_model()

2023-01-18 Thread David Wallace
Thanks Ryan for this comprehensive info. Looking at option 2 (and maybe 3 as well) initially. But nice to know about option 1 as well, which I may adopt in a longer term. On Sunday, 15 January 2023 at 20:50:28 UTC Ryan Nowakowski wrote: > I had a similar problem that I've worked through. I reco

Re: How to fetch 10000 above record within second in django?

2023-01-18 Thread Jason
https://dev.mysql.com/doc/refman/8.0/en/using-explain.html is a good guide to showing how to use EXPLAIN to see what your query is running. https://use-the-index-luke.com/ is a great introductory source for indexes https://django-debug-toolbar.readthedocs.io/en/latest/ added to your project can

Please i need help in creating a Login page with Django

2023-01-18 Thread Michael R. KOOMSON
I am trying everything possible to create a basic login page with Django., i have tried so many videos and online tutorial, but still can't make anything meaningful out of it. Can anyone please take me through a systematic process please, since i am new here and want to take Django to be my fri

save() method not working in shell. What are possible causes?

2023-01-18 Thread Artur Rączka
Hello guys, What am I missing or doing wrong? >>> dublin.price 40 >>> dublin.price = 100 >>> dublin.price 100 >>> dublin.save() >>> dublin.price 40 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rece

configuration

2023-01-18 Thread frank dilorenzo
I cannot seem to resolve this configuration correctly. I have a list of suppliers. A supplier can have one profile A supplier can have many shipments. A shipment can have many species I have tried several ways and I always end up with some kind of circular problem. Any thoughts are appreciated.