On Tuesday, March 10, 2015 at 4:10:48 AM UTC-7, Mahesh Thipparthi wrote: > > Hi All, > Kindly help me with following questions. > > Use case is this: > 1. i have created a form manually ( not generated through django forms) > 2. I am calling a Django view function upon submission. > 3. validating the field through django form as i ensured that form names > are same. >
>From your example code, I'm guessing the reason why you don't want to use a Django form is because you need to have Bootstrap classes on the form elements. A much better way to skin this cat is to use a standard Django form and then render it out with django-bootstrap-forms: https://django-bootstrap-form.readthedocs.org/en/latest/ ./s -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/58f66a37-a512-44c6-ac22-1e5958a70a6c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

