How do I make many-to-many field optional in Django?
When you have a many-to-many relationship (related_name
, not through
) and you are trying to use the admin interface you are required to enter one of the relationships even though it does not have to exist for you to create the first entry.
I'm creating an app that is an event organizer. Imagine we had Event
and Group
models, bound with many-to-many relationship.
Django related_name
creates another table with the indices of the two other tables.
If I work with the database through phpMyAdm开发者_运维问答in I can create a Group
without registering an Event
, since the connection between the two is only through a separate table, and there is no database value enforcement at given level.
How do I make the admin interface this realize it?
How do I make the many-to-many field optional in Django?If you want to be able to specify ManyToMany relation without making it required just use blank=True
:
class Group(models.Model):
...
events = models.ManyToManyField(Event, blank=True)
If Ludwik's answer does not solve the issue, set required to false in the serializer as well:
class RecipeDetailSerializer(RecipeSerializer):
"""Recipe detail serializer"""
tags = TagSerializer(many=True, required=False)
精彩评论