keithjeb

Results 1 issues of keithjeb

I have the following models: ``` python class UploadTemplate(models.Model): book = models.ForeignKey('Book', on_delete=models.SET_NULL, null=True) coupon_type = models.CharField(max_length=100) class Book(models.Model): book_name = models.CharField(max_length=30) #....random other fields ``` and serializers as follows:...