Django Tables

2014-02-10 Thread Onur
Is there any suggestion for open source django tables, I know django_tables2 and eztables? Which one would you like to prefer? or Do you know anyone else? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

2 model form with foreign key

2014-06-09 Thread Onur
below is the my 2 models Class Profile(models.MODEL): first_name = models.Charfield() last_name = models.Charfield() adress = . Class Reservation(models.MODEL): profile = models.ForeignKey(Profile) price = models.IntegerField() room = m

Need help with models.ManyToManyField() as it always includes all objects when I click "save and continue editing"

2019-05-14 Thread Onur Seker
Hi, everytime I am selecting only one object from my Product from all my Products available in my Cart. It saves and includes all Products to the model.ManyToManyField(Product) in my Cart model. I dont know what is wrong with my code here. Can somebody help me please? -- You received this me