3
votes
0answers
216 views

Update with Tastypie in Resource with Foreign Keys

I have a problem (unsupported operand type(s) for ** or pow(): 'Decimal' and 'NoneType') with resources involved in foreign key constrains. Here is a piece of code (a contacts belongs to a department ...
1
vote
1answer
560 views

Posting data to create related Tastypie resources simultaneously?

Given two related Django models A and B in a OneToMany relationship: models.py class A(models.Model): name = models.CharField(max_length=5) class B(models.Model): name = ...
7
votes
0answers
1k views

Django+backbone+tastypie: handling relationship [duplicate]

Assuming that i have Django models Category and Item, with Item that have ForeignKey towards Category (this field is named category), i have made Item model in Backbone like this: defaults:{ name:'', ...