Skip to main content

A form field to create a related model sub-form

Project description

ModelMultiValueField provides the ability to create sub-forms for foreign models without having to worry about writing the ModelMultiValueField subclasses.

Quick start

  1. Add “modelmultivalue” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'modelmultivalue',
    ]
  2. Add the ModelMultiValueField to a model form

    1. All django version:

      from django import forms
      from modelmultivalue import ModelMultiValueField
      
      class ExampleModelForm(forms.ModelForm):
          class Meta:
              model = Example
              fields = '__all__'
      
          ForeignKeyField = ModelMultiValueField(model=ForeignKey
    2. for Django>=1.9:

      from django import forms
      from modelmultivalue import ModelMultiValueField
      
      class ExampleModelForm(forms.ModelForm):
          class Meta:
              model = Example
              fields = '__all__'
              field_classes={
                  'ForeignKeyField': ModelMultiValueField
              }

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-modelmultivalue-0.21.tar.gz (6.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page