以下是我的模特辩护
class ExtendedContentToCategory(models.Model):
category = models.ManyToManyField(Categories)
extended_content = models.ForeignKey('ExtendedContent', unique=True)
class Meta:
verbose_name = _('Assets > Extended content to category')
此模型将Categories和Gallery模型与ManytoOne关系连接起来。意味着一个画廊能够连接许多类别。
我需要创建api源以使用tastypie添加此模型对象。 任何人都可以帮我解决这个问题