Answer the question
In order to leave comments, you need to log in
Problem with many-to-many field relationship, how to fix?
Good day, suppose there are two models, one user:
class User(models.Model):
images = models.ManyToManyField("Image", verbose_name="Фотографии", blank=true)
class Image(models.Model):
image = models.ImageField(verbose_name="Фотография", default="/static/images/default_image.png")
Answer the question
In order to leave comments, you need to log in
use in the admin for the user something like
raw_id_fields = ("images",)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question