Thank you so much, James. . .I greatly appreciate you taking the time to answer!
On Tuesday, February 23, 2016 at 1:50:57 AM UTC-5, James Schneider wrote: > > On Mon, Feb 22, 2016 at 10:23 PM, Chris Kavanagh <[email protected] > <javascript:>> wrote: > >> To possibly answer my own question, thinking out loud, we have to >> override the Form Constructor so we can pass in the Request from the view >> when instantiating the Form? >> > > You beat me to it. Yes, you would need to override __init__() to include > the request in to your form class. Be sure to keep it out of your > args/kwargs that are passed on to your super() call, though, as it will > confuse the parent form class (if I remember correctly when I did the same > thing). If you are using CBV's, that you'll need to override get_form() as > well in order to return the form with the self.request as one of the > arguments being passed in. > > -James > > -- 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 https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/0ccd7441-900f-474d-ab26-4e2e737c343c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

