I have created a Storage object in a model to expose some settings gathered from the database. But I am facing a problem.
When I access the object from a view, it works correctly, e.g.,
{{=gsettings.setting_name}} produces the correct text in my html.
But if I try to access that value in my controller (e.g., value =
gsettings.setting_name) I get an error:
'function' object has no attribute 'setting_name'
Any help would be appreciated.
Thanks
Rod

