>
> db.object.location.represent = lambda location, row: \
>> A(location,_href=URL('location', 'update', args=(location.id),
>> user_signature=True))
>>
>
> In the above line, you have specified your own "represent" attribute for
> the "location" field, so it will not use the "format" attribute of the
> "location" table to represent the field. The "format" attribute of the
> referenced table is only used if the field doesn't have its own explicit
> "represent" attribute.
>
>
I've removed the two lines, but the behavior is still the same. So there
must be an other error in my code?
My idea is that the format does specify the string for db.object.location
and the db.object.location.represent should modify the string to be a link.
Is this not possible at all?
-Luca.