Sorry to bother the list I figured it out however
On Fri, Oct 16, 2009 at 4:19 PM, mabo <[email protected]> wrote:
> How can I pass the values from a URL
>
> currently I have in my templates file:
>
> <a href="/topicslist">{{ forum.fname }}</a>
>
> and my function
>
> def get(self):
> ##fname_id = self.request.get('fname_id') attempt 1
> que = db.Query(forum_db)
> topic_list = que.fetch(limit=1).filter('fname =', fname_id)
> doRender(
> self,
> 'topicslist.htm',
> {'topic_list': topic_list})
>
> really unsure how to do this
>
> I have a database full of entries and would like to click the link
> selecting the one entry in the database and showing its full content
> any ideas
>
> Cheers
>
>
> Andrew
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---