HI everyone!
Can I redirect to view with form passing few variables in POST method
(request.POST) and showing them in the form? (i need this in admin
action)
for example this works:
def add_mailing(self, request, queryset):
return HttpResponseRedirect('%s?subject=halo' % \
urlresolvers.reverse
('admin:tenders_mailing_add'))
but this does not:
def add_mailing(self, request, queryset):
post = request.POST.copy()
post.update({'subject': 'halo'})
request.POST = post
return HttpResponseRedirect(urlresolvers.reverse
('admin:tenders_mailing_add'))
* subject is name of text field in a form
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---