View that displays my ManyToManyField('self'...) relations in a with levels

2021-08-18 Thread M. GW
Hi, I am now trying, for days, to get a tree like view from my assembly model into my template. I think I have read everything what I have found on StackOverflow and other sites. Somehow I am not able to get it working. I am trying to not use any 3rd party extensions => I'm happy to be proven

Re: HELP me: "a beginner's questions"

2021-08-18 Thread M. GW
Hey, have you check this: https://docs.djangoproject.com/en/3.2/howto/deployment/ jt.vc...@gmail.com schrieb am Mittwoch, 18. August 2021 um 15:03:03 UTC+2: > Hi > > I am now starting to work in Django. > > I built a development environment on my laptop. I experimented there, > things work. >

Re: What is the difference bulk_update() and update() in django queryset.

2021-08-18 Thread M. GW
bulk_update() is a method that updates the provided list of objects into the database with one query. and update() is just for one object ambiti...@gmail.com schrieb am Donnerstag, 12. August 2021 um 00:03:25 UTC+2: > What is the difference bulk_update() and update() in django queryset. --