Re: Multiple Django Forms

2015-04-07 Thread Stephanie Socias
Thank you all for you suggestions/help. I was finally able to get this working by using django-dynamic-formset Bill Blanchard helped me figure it out! I will post a more detailed solution in my other post here on this forum ("Help with Dynamic

Re: Multiple Django Forms

2015-04-04 Thread Luis Zárate
mmm Maybe you should use form wizard if you have too many forms https://docs.djangoproject.com/en/1.7/ref/contrib/formtools/form-wizard/ 2015-03-31 5:11 GMT-06:00 Bill Blanchard : > Hi Stephanie, > Ping me offline, I might be able to help you out. > On Mar 30, 2015 1:43 PM, "Stephanie Socias"

Re: Multiple Django Forms

2015-03-31 Thread Bill Blanchard
Hi Stephanie, Ping me offline, I might be able to help you out. On Mar 30, 2015 1:43 PM, "Stephanie Socias" wrote: > Thank you for your suggestions! > > Unfortunately, as I am very green at the moment, I nee more help to > implement all of these new techniques. Given that what I'm trying to >

Re: Multiple Django Forms

2015-03-31 Thread François GUÉRIN
Hi Stephanie, Maybe you are french ? I'm sorry, but I've no time to make a screencast video. But the django doc is very good and in multiple languages : french is available if you change /en/ > /fr/ in the doc url. 1/ For generic views : https://docs.djangoproject.com/en/1.7/topics/class-base

Re: Multiple Django Forms

2015-03-30 Thread Stephanie Socias
Thank you for your suggestions! Unfortunately, as I am very green at the moment, I nee more help to implement all of these new techniques. Given that what I'm trying to accomplish requires more extensive Django and javascript knowledge, is there anyone who would be willing to do a video scr

Re: Multiple Django Forms

2015-03-30 Thread François GUÉRIN
1/ use generic views : ProcessFormView by example 2/ use prefixes in your forms with there name (it's a param in form cctor) 3/ in your template, use the {%for form in forms %}{% form.as_p %}{%endfor %} if you put your forms into a list form forms Good coding ! -- You received this message b

Multiple Django Forms

2015-03-30 Thread Stephanie Socias
Hello, I've been trying for days to get my form(s) going. I essentially have four separate forms and a formset that I am trying to submit with one submit button. I'm using django-crispy-forms. My first issue it that now my form "submit" button is not doing anything. Additionally, I need to be a