On 7/18/06, OriginalBrownster <[EMAIL PROTECTED]> wrote: > > > @expose(template="se.templates.testpage.kid")
Your problem is in the line above. When specifying the template in @expose you don't need to use the extension. The .kid files are referenced using their python module name. If your template is indeed called testpage.kid your @expose should be as follows: @expose(template="se.templates.testpage") Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

