On Sep 4, 4:24 am, Nader <[EMAIL PROTECTED]> wrote: > I am a new in Django world. I have installed Django and have made a
Welcome! :-) > The Model in this application looks like : > > class ContactInfo(models.Model): > contactId = models.IntegerField(primary_key=True) Quick note: This isn't necessary. Django will add a pk for you [1]_. To make an empty form a good place to start is form_for_model [2]_. First create the form class:: ContactInfoForm = form_for_model(ContactInfo) If you only want a few of the fields from your model in this form use the fields [3]_ argument in the example above. Then create an empty form:: form = ContactInfoForm() You're nearly there at this point. For an example of a view to process this form, look at the bottom of the form_for_instance section [4]_ (this is also how to make an edit-form with data from the database). The docs can be pretty daunting at first, but stick with 'em and feel free to run any questions you have past this list! Good luck, - whiteinge .. [1] http://www.djangoproject.com/documentation/model-api/#automatic-primary-key-fields .. [2] http://www.djangoproject.com/documentation/newforms/#generating-forms-for-models .. [3] http://www.djangoproject.com/documentation/newforms/#using-a-subset-of-fields-on-the-form .. [4] http://www.djangoproject.com/documentation/newforms/#form-for-instance --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---