Re: Submitting data from a form

2012-09-14 Thread Joseph Mutumi
Hi, Let me give you a code sample that would be hopefully a push in the right direction. Simply follow these steps: 1. Create your model. Its the code interface to your data source (database) 2. Create your form. Forms are used for processing input data (validation, error reporting et

Re: Submitting data from a form

2012-09-13 Thread Tom Evans
On Thu, Sep 13, 2012 at 6:26 AM, KVR wrote: > Hi, > I am a Django learner . > I need to do a requirement as described below. > > 1.There is a column in a model > 2.I want to create a template with a select button in that. > 3.On selecting an option and submitting, the column should be updated with

Submitting data from a form

2012-09-13 Thread KVR
Hi, I am a Django learner . I need to do a requirement as described below. 1.There is a column in a model 2.I want to create a template with a select button in that. 3.On selecting an option and submitting, the column should be updated with the submitted value. Please give me some idea on how to