I'm using web.py to create a site, and to pass config values and common functions between the backend and frontend templates I am using a custom class object. I am using a base template, and could not figure out how to pass a variable to a base template so I just pass it to the child template and then do
$var o: $:obj
but when accessing it in the base template, I get
<object.object instance at 0x12345678>
and I can't figure out what I'm doing wrong. I've added ':' before all references to the variable, but it does not help.