I suspect I have a simple problem here... But I'm a Django beginner
(plus my Python could be stronger)

I'm trying to use the reverse(...).

When I call it as such:

   return
HttpResponseRedirect( reverse('my_site.core_prototype.views.PostWithList') )

it works as expected.

Now I need to call it with the intention of passing in a parameter. My
method prototype looks like:


    def PostWithList( request, numOfPosts=50, data=None, form =
NewMicroPostForm() ):
         #... etc... #

How do I use reverse but passing in the form parameter? This is being
called from another view where form validation has failed. I've
attempted several variation all resulting in the same error...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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