I figured it out - you just have to overload the FormWizard method
parse_params, like so...

class CreateThingWizard(FormWizard):

    def parse_params(self, request, *args, **kwargs):
        current_step = self.determine_step(request, *args, **kwargs)
        if request.method == 'GET' and current_step == 0:
            # access the objects necessary - user and profile in my
case
            user = request.user
            profile = user.profile
            # stuff the data into the appropriate initial dictionary
slot (self.initial[step_number])
            self.initial[current_step] = {'post_code':
profile.post_code,
                                          'telephone':
profile.telephone,}

Hopefully this will be helpful to anyone else who needs to do this -
or to me 6 months from now :)

On Sep 18, 11:45 am, nostradamnit <sam.cranf...@gmail.com> wrote:
> I'm trying to use aFormWizardfor a 2 step form. In the first form, I
> want to populate the email and post code fields with data from the
> current user (request.user.email, request.user.profile.code_postal),
> but I can't see how to pass the data dictionary to the form?!? I see
> how to pass initial data from the urls.py, but I don't have access to
> the request object there :(
>
> Thanks in advance,
> Sam
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to