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 4584228
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T21:19:29+00:00 2026-05-21T21:19:29+00:00

hello . im new to django and i want to create a form that

  • 0

enter image description here

hello .

im new to django and
i want to create a form that looks like the image above in html.
the form should save the data when the user chose a radio button.

how to implement such a form in django ( please note that user cannot chose more than one answer)

  • 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-05-21T21:19:30+00:00Added an answer on May 21, 2026 at 9:19 pm

    You want to use ChoiceField and RadioSelect:

    from django import forms
    
    class GenderForm(forms.Form):
        CHOICES = (
            ('M', 'Male'),
            ('F', 'Female'),
        )
        choice = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect())
    

    Remember, Django documentation is your friend!

    Dynamically Changing Choices
    If you want to be able to dynamically create the form, it might be a good idea to use ModelForm instead of forms.Form. Here’s an example:

    from django.db import models
    from django.forms import ModelForm
    from django import forms
    
    class Answer(models.Model):
        answer = models.CharField(max_length=100)
    
        def __unicode__(self):
            return self.answer
    
    class Question(models.Model):
        title = models.CharField(max_length=100)
        answers = models.ManyToManyField('Answer')
    
    class QuestionForm(ModelForm):
        class Meta:
            model = Question
            fields = ('title', 'answers')
            widgets = {
                'answers': forms.RadioSelect(),
            }
    

    In your view instantiate the form with an instance specified to use:

    question = Question.objects.order_by('?')[0]
    form = QuestionForm(instance=question)
    

    The form will then use the answers associated with that Question (in this case randomly chosen) and pass the form to the templates context as usual.

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

Sidebar

Related Questions

Hello I'm new to Joomla and I want to change the way an account
Hello I'm new to ontologies, my assignment is to create an ontology using Protege
Hello I want to create a simple blog where users can post comments, but
am new to django and jquery,I am searching for a 'hello world' sample for
I'm new to Django and been reading the http://djangobook.com and finds that the following
I make a alternate entry point that display a dialog Hello new week on
Hello I`m new with C# and I want to make a simple C# pin
class Hello @hello = hello def display puts @hello end end h = Hello.new
hello im new to python and have been reading over the documentation and am
Hello.Am new to ios development.What have to do for NSOpenPanel to work in the

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.