I've seen this I believe when I tried to keep a model object in the session dictionary, and use it in a second TG page. By default, there is one transaction per page request (and if you redirect to a different page, that's another request and another transaction). So the moral of the story that worked for me was always fetch the model objects with SQLObject get, select etc freshly in each page-method. Pass around the ids of the objects between pages rather than the objects themselves. Hope this addresses your issue.
On 8/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > It appears there is a problem passing model variables/objects to a Kid > template? > > When I do I get the following... > > AssertionError: This transaction has already gone through ROLLBACK; > begin another transaction > > Chris > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

