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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:25:31+00:00 2026-05-23T12:25:31+00:00

I am newbie in Django and wanted to know a very basic thing: I

  • 0

I am newbie in Django and wanted to know a very basic thing:

I have a form which has some dropdown boxes and textfields and upon hitting the button on the form, I want the data to be inserted into database table.
I have already created the table using model.py but dont know where the insert code would come.

  • 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-23T12:25:32+00:00Added an answer on May 23, 2026 at 12:25 pm

    The usual way to go about is to create a ModelForm if the data you are collecting is mapping to a model. You place the ModelForm in forms.py inside your app.

    # forms.py
    from django import forms
    from someapp.models import SomeModel
    
    class SomeForm(forms.ModelForm):
        class Meta:
            model=SomeModel
    
    
    # views.py
    from someapp.forms import SomeForm
    def create_foo(request):
    
        if request.method == 'POST':
            form = SomeForm(request.POST)
            if form.is_valid():
                 # form.save() saves the model to the database
                 # form.save does only work on modelforms, not on regular forms
                 form.save()
    
        ..... return some http response and stuff here ....
    

    Read more here:

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

Sidebar

Related Questions

Being a Django newbie, I have a question to ask, which should be very
I am newbie at Django. I have model with a custom method. In view
Newbie question. I have Django models that look like this: class Video(models.Model): uploaded_by =
Django newbie at work and I could use some pointers. I'm using django-profile and
Django newbie here, I have several types of models, in each of them the
I'm a Django newbie who needs help: Even though I change some urls in
I am a django newbie and in creating my first project I have come
I am a python django newbie, and was going through some open source code,
a newbie question I have a Django project with two applications core and nagios
Django Newbie question. I have the following model: class Leg(models.Model): drive_date = models.DateField() startpoint

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.