Hello,

That particular QueryDict instance is immutable, so you won't get what
you want.
Try the following:
new_data = request.POST.copy()
new_data['author'] = "Username I want"

This will create a mutable instance and fill it with the correct data.
You can then use new_data in whatever context you were using
request.POST.

Cheers,
Michael Axiak

On Mar 12, 6:33 pm, "Grupo Django" <[EMAIL PROTECTED]> wrote:
> Hi!
> I have created a form using newforms, and one field is author which I
> want to fill using the current username, I did this:
> request.POST['author']="Username I want"
> and I got this error:
> "QueryDict instance is immutable"
> Ok, what should I do? I thought about create a hidden widget for this
> field, but that's not secure enough.
> Is there a way to do what I want?
>
> Thank you!


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

Reply via email to