Hello, Is it possible to do that? db.define_table(... Field(... label=T(dblabels_en[db.table._tablename+db.table.field.name])
I can do db.define_table(...) db.table.field.lable=T(dblabels_en[db.table._tablename+db.table.field.name]) Inside table model definition "table" is not yet define then I can refer to it. I try with lambda with no succes. Do you see a way to refer to the db.table._tablename in order to make it execute only once that the model is defined? Thanks Richard --