Re: Jumping views

2005-08-30 Thread John Madson
Tim, Thanks for your thoughts. I'd done something very similiar in my previous Rails implementation of this web application, and the approach works, well, as good as your lexer function. What I was really looking for was some guidance on the proper way to move from one Django view to another (e

Re: Jumping views

2005-08-29 Thread Tim Keating
I can't say from practical experience, but I'm doing something similar and I can tell you what I'm *planning* to do: I am going to pass the search string to a lexer function that will rip it apart into various constraints. The constraints are returned as arguments to pass to the get_list function

Jumping views

2005-08-29 Thread John Madson
Well, since my last post [1] didn't get any response, let me try a simplified version... I have a form that looks like your typical "advanced search" page: a few fields in which the user can specify constraints that are ultimately going to be passed to a SELECT. I have a generic list view and as