content_type? То есть для для одной модели можно иметь только один GenericRelation, а для остальных моделей неограничено.
class Photo(models.Model):
photo = models.ImageField(verbose_name=_("photo from the movies"), upload_to=get_image_path)
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
object_id = models.PositiveIntegerField()
content_object = GenericForeignKey('content_type', 'object_id')
unique_together в class Meta
Обсуждают сегодня