Yes but you never pass two forms to the template at the same time. In add_product you pass form1, in add_product_details you pass form2.
>>> (r'^product/$', views.add_product), >>> (r'^product/$', views.add_product_details), You have the same URL twice, only one of them will ever be active. Remove one of those of URL's, then merge the two views together and pass both form1 and form2 to the template. -- Andy McKay Clearwind Consulting Site: www.clearwind.ca Blog: www.agmweb.ca/blog/andy --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---