Consider the following example:
class A:
classTemplate = "templateA"
@expose(template=classTemplate)
def page(self):
return dict()
class B(A):
classTemplate = "templateB"
Now, when the user loads "page" from Class B, "templateA" is used. Any
way that I can get my code to use "templateB" when http://b/page/ runs?
TIA
-percious
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---