ManyToManyField in Django Models

  • ManyToManyField is represented by django.forms.ModelMultipleChoiceField, which is a MultipleChoiceField whose choices are a model QuerySet.

Comments

Popular posts from this blog

Advantages to using URLField() over TextField()

Forms in Django(bound, unbound, clean, is_valid, errors)