I am using django 1.2 and going from one view to another using the urlresolvers reverse method.
url = reverse(viewOne)
and I want to pass a
GET parameters have nothing to do with the URL as returned by reverse. Just add it on at the end:
reverse
url = "%s?name=joe" % reverse(viewOne)