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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:40:40+00:00 2026-06-10T19:40:40+00:00

I got this form working Ok but i can’t figure out how to save

  • 0

I got this form working Ok but i can’t figure out how to save it to the database via the model i know this is a semantic question that i can’t figure out Please Help. I’m using django The error is

 D = Donation(user=request.user,name=form.cleaned_data['name'],description=cd['descri‌​ption']) D.save()


views.py
    def donate(request):
        if request.method == 'POST':
            form = DonationForm(request.POST)
            if form.is_valid():
                cd = form.cleaned_data
                D = Donation(user=request.user,name=form.cleaned_data['name'],description=cd['description'])
                D.save()
                return HttpResponseRedirect('/test/')
        else:
            form =DonationForm()
        return render_to_response('addaDonation.html',{'form': form},context_instance=RequestContext(request))

`
Donation is my Model and i need to get the information from my form into the Donation Model so i can D.save

class DonationForm(forms.Form):
    name = forms.CharField(max_length=50)
    description = forms.CharField(max_length=3000)
    towards = forms.CharField()
    #image = forms.ImageField()

class Donation (models.Model):
    user = models.ForeignKey(User)
    name = models.CharField(max_length=50)
    description = models.CharField(max_length=3000)
    towards = models.ForeignKey(NonProfit)
    image = models.ImageField(upload_to='photos/%Y/%m/%d')

The error I get is
(1054, “Unknown column ‘name’ in ‘field list'”)

Request information

GET
No GET data
POST
Variable    Value
csrfmiddlewaretoken u'nXGN4gdZwk2qxNpP9YIXzvNQI7lKQe5r'
towards u'this'
name    u'this'
description u'that'
  • 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-10T19:40:42+00:00Added an answer on June 10, 2026 at 7:40 pm

    change your form class to the following;

    from django.forms import ModelForm
    class DonationForm(ModelForm):
    
        class Meta:
            class = Donation
            exclude = ("user", )
    
        def save(self, user):
            donation = super(DonationForm, self).save(commit=False)
            donation.user = user
            donation.save()
            return donation
    

    Then you should be able to change the view.py to the following;

    def donate(request):
        if request.method == 'POST':
            form = DonationForm(request.POST, request.FILES)
            if form.is_valid():
                form.save(request.user)
                return HttpResponseRedirect('/test/')
        else:
            form = DonationForm()
        return render_to_response('addaDonation.html',{'form': form},context_instance=RequestContext(request))
    

    See official documentation Creating forms from Models

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

Sidebar

Related Questions

I've got this form working, but according to my previous question it might not
Got this line of code here but its not working. private void Button_Click(object sender,
I've got a web where logged in users can fill out a form to
I got the checkbox working, but I can't remember what modification I have done
I've successfully posted a single array, but I can't figure out how to send
I know this seems pretty basic, and it should be, but I can't find
I've got this form element: $form->input('ChecklistResponseGovernmentInfo.driversLicenseIsOnline', array('type'=>'radio', 'empty'=> true, 'options'=>array(0 => 'No', 1 =>
I got this from for a login form tutorial: function sanitize($securitystring) { $securitystring =
I got this code in my submit form <form id=myform action='hello.php' method='GET'> <input type=button
I've got this php code to send the users information from the contact form

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.