Hi,
I just got started with TurboGears defined a few models. In one of the models I defined a column_property:
class Server(DeclarativeBase):
...
ipaddr = Column(postgresql.INET)
ip_family = column_property(func.family(ipaddr))
When I visited /admin it was giving me error "Neither Label nor Comparator object contains info".
It seems in Sprox code it tries to access
column.info['title'] to get the title of field. I tried setting info={'title': 'IP_FAMILY'} in column_property as per SQLAlchemy docs but it didn't work.