I just wanna add other attribute to model
class BookCardsModel(models.Model):
    class Meta:
        verbose_name = 'Card Books'
        verbose_name_plural = 'Card Books'
    book_cover = models.ImageField()
    book_name = models.CharField(max_length=100)
    book_subtitle = models.CharField(max_length=100)
    book_description = models.TextField(max_length=300)
    full_description = models.TextField(max_length=700)
    book_quantity = models.IntegerField(default=0)
    book_color = models.CharField(max_length=100, blank=True)
    book_size = models.CharField(max_length=100, blank=True)
    digital = models.BooleanField(default=False,null=True,blank=False) 
 
     
     
    