Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8220365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T13:29:49+00:00 2026-06-07T13:29:49+00:00

My model form inherit from subsystem form. I want to limit choices for the

  • 0

My model form inherit from subsystem form.
I want to limit choices for the user in the form. (specially the name)
I know I have to use widgets. But It doesn’t work.

I have to use SubsytemForm.

SUBSYSTEM_CHOICES = (a1,a2,a3)


class Subsystem(models.Model):
    name = models.CharField("Name", max_length=20)


class SubsytemForm(forms.ModelForm):   
    class Meta:
        model = Subsystem
        widgets = {
            'name': ChoiceField(widget=RadioSelect, choices=SUBSYSTEM_CHOICES)
        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T13:29:50+00:00Added an answer on June 7, 2026 at 1:29 pm

    From django model forms documentation:

    If you explicitly instantiate a form field like this, Django assumes
    that you want to completely define its behavior; therefore, default
    attributes (such as max_length or required) are not drawn from the
    corresponding model. If you want to maintain the behavior specified in
    the model, you must set the relevant arguments explicitly when
    declaring the form field.

    You can try with:

    class SubsytemForm(forms.ModelForm):  
        name =  forms.ChoiceField(widget=RadioSelect, choices= choices )
        class Meta:
            model = Subsystem
    

    Also you can

    class SubsytemForm(forms.ModelForm):  
        class Meta:
            model = Subsystem
        def __init__(self, *args, **kwargs):
            self.name_choices = kwargs.pop('name_choices', None)
            super(SubsytemForm,self).__init__(*args,**kwargs)
            self.fields['name'].queryset= self.name_choices  
    

    and send name_choices as parameter in SubsytemForm creation. Remember that choices should be a query set.

    Also, you should read How do I filter ForeignKey choices in a Django ModelForm?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Right now, I have more than 25 vertices that form a model. I want
If I have a model with a couple of fields that inherit from a
I want to do store the parameters from a form in a model. Since
I have a Bike model and a Component model. Several models inherit from Component
I have a model form that contains a DecimalField() with max_digits set to 5.
After obtaining data from a model form based on a Model, say form_data =
I have the following form: @model Teesa.Models.SearchModel @using (Html.BeginForm(Index, Search, FormMethod.Get, new { id
I have the standard 'RequiredIf' attribute for some Conditional-Validation. My form and Model are
I have a form which binds a model and a file upload using the
I'm creating a crispy form from a DB model. I'd like to put ALL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.