Re: generating a list of click-able links to a detail page

2008-11-25 Thread dash86no
Donn, Daniel, Thanks for your advice. I combined both your ideas together and now have a solution to my problem. It was pretty difficult though; that documentation is a little hard core. For example, there were references to post_save_redirect throughout the documentation but no explanation or e

Re: generating a list of click-able links to a detail page

2008-11-24 Thread Daniel Roseman
On Nov 24, 11:59 am, dash86no <[EMAIL PROTECTED]> wrote: > I've implemented a search function which brings up a list of database > items on a page. My template looks like this: > > {% extends "base.html" %} > > {% block content %} > >     {% if results %} >       >       {% for quote in results %

Re: generating a list of click-able links to a detail page

2008-11-24 Thread Donn
My guess is something like: {{ quote|escape }} And then have a line in ulrsconf to catch that link and send it to a view which pulls and makes the form. \d --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dja

generating a list of click-able links to a detail page

2008-11-24 Thread dash86no
I've implemented a search function which brings up a list of database items on a page. My template looks like this: {% extends "base.html" %} {% block content %} {% if results %} {% for quote in results %} {{ quote|escape }} {% endfor %} {% else %}