Ronald Jaramillo wrote:

> I need help here, I must admit I don't know what you are talking about.
> Where do you define  a title? (A model example will be nice)
In the column definition.

Accessed as cls.sqlmeta.columns['fieldname'].title

I would create a tuple list of it like this :

l = [(x, cls.sqlmeta.columns[x].title) for x in cls.sqlmeta.columns ]

Then dict(l) if I want key acess of it.

Reply via email to