Re: Need Help Regarding Forms.py

2011-09-01 Thread chandrakant kumar
just see the output in the interactive shell , you can see the id of the form elements. On 9/1/11, Showket Bhat wrote: > Thanks for presious reply Sir, > I have used such type of forms before but what if i need to adjust the > size of fields, Color of my form, design and CSS of such forms.. How >

Re: Need Help Regarding Forms.py

2011-09-01 Thread Showket Bhat
Thanks for presious reply Sir, I have used such type of forms before but what if i need to adjust the size of fields, Color of my form, design and CSS of such forms.. How can i make that colorful..IS there a way... On Sep 1, 3:47 pm, Oscar Carballal wrote: > You can use ModelForms, it is the easi

Need Help Regarding Forms.py

2011-09-01 Thread Showket Bhat
Hi All I am new to Django and I have created a small application for learning Django.. Well I have not used forms in my application.. Is it necessary to use forms in Django.. Can't we work without forms.. If yes then I want to create a form where in i ll be inserting field values for a class..

Re: Need Help Regarding Forms.py

2011-09-01 Thread Oscar Carballal
You can use ModelForms, it is the easiest way of creating the forms for your template: https://docs.djangoproject.com/en/dev/topics/forms/modelforms/ That will generate the necessary form and you just need to put the form templatetags in your template. An example for your code would be: forms.py -

Re: Need Help Regarding Forms.py

2011-09-01 Thread Showket Bhat
Sir, I am not much familier with forms. even i have practiced a little but found forms not to be so helpfull... If i need to customize my own formswith my own design and flow... Thats the reason..Please help me with my actual query.. I ll be very much thankful to U... Thanks On Sep 1, 3:37 pm, bru

Re: Need Help Regarding Forms.py

2011-09-01 Thread bruno desthuilliers
On Sep 1, 12:31 pm, Showket Bhat wrote: > Hi All > > I am new to Django and I have created a small application for learning > Django.. Well I have not used forms in my application.. Is it > necessary to use forms in Django.. Can't we work without forms.. You "can" work without Django forms. Y