Daniel,

I appreciate the time you took to answer.

I could do this, but I have a number of views that the user will have the
option of selecting on this resulting page, so I would have to keep passing
it as a GET variable on subsequent requests.

Any other thoughts?  (I may end up doing this if I have to - I just hoped
Django might have a more elegant way to do it by dynamically changing the
URL.)

Robb

On Sat, Aug 22, 2009 at 2:12 PM, Daniel Roseman <dan...@roseman.org.uk>wrote:

>
> On Aug 22, 6:55 pm, Robb Bossley <robb.boss...@gmail.com> wrote:
> > I have one more question to ask of all of you Django gurus - I hope it is
> > simple, though I think I have pulled most of my hair out trying to get
> this
> > down in my mind
> >
> > I have a form that displays four lookup values.  I would like to append
> > these values to the url (versus setting these variables as session
> > variables) and redirect to a page that uses these values in its
> > calculations.  Suppose:
> >
> > Customer order # = 4
> > Customer item # = 36
> >
> > URL was:
> >
> > /site/<customer #>/mainpage
> >
> > Now it is:
> >
> > /site/<customer #>/mainpage/4/36    (which by the way is a new page using
> > these values passed in the url)
> >
> > I have the new page already working and I have the form with the select
> > boxes for the four parameters, but I can't figure out how to get that
> into
> > the URL
> >
> > Help!
> >
> > Thank you,
> >
> > Robb
>
> If you put method="GET" in the form tag in your HTML, submitting it
> will add the parameters to the action URL as query parameters:
>
> /myurl/?order=4&item=36
>
> and you can access them from your view via the request.GET dictionary.
> --
> DR.
> >
>


-- 
"Because of the Lord's great love we are not consumed, for his compassions
never fail.  They are new every morning; great is your faithfulness."
Lamentations 3:22

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