Bill de hÓra wrote:

> So after catching the source URL off the POST request, and before 
> forwarding to the template, I seem to have two choices:
> 
>   - write the link into the FormWrapper/AddManipulator configuration's 
> data.
> 
>   - pass the link along as another param to the template
> 
> Is there any support for the former way (had a look, no mutators jumped 
> out at me) or should I just send the link param along?

  new_data = request.POST.copy()
  manipulator = SiteFeedback.AddManipulator()
  new_data['link'] = LINK_DEFAULT
  form = forms.FormWrapper(manipulator, new_data, {})

 >duh<

cheers
Bill

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to