On Thu, Aug 27, 2009 at 5:40 PM, Viacheslav Chumushuk<vo...@root.ua> wrote: > Hello. > > I have project design question. Imaging that we have page with simple search > form at the top and search results at the bottom of the same page. And every > row of result table has a link to another page (edit/view this founded > item). After user clicking this link he goes to another page (for example > edit product), then he presses a button (say save or cancel) and returns to > the previous page with results. How to make user see exactly the same page, > with the same data in search form and the seame searching results? > Almost all projects have similar functionality, isn't it. I want to discuss > how to do it in the best way, how different people do it. > I see only the one variant, -- with flash data which is stored into session. > > And can you recommend some reference to documentation/code about this kind > of flash storing. Because I was googled and found only some simple flash to > use in views, just to show messages, but not to transfer data between pages.
Hi Viacheslav, All you need to do is on your edit/view links include the necessary extra args to recreate the search they used and then in your actual editing views use those values in the redirect upon save or cancel. For example, if your links are currently like /model/edit/7 change them to be /model/edit/7?search=keyword And then use 'search' there, along with whatever other args to your search view you need, when redirecting to your search page. -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---