i have a table with 3 Fields :

db.define_taboe('person',Field('name'),Field('description','text'),Field('sex'))

so i want to get the description but not all of the text in side


{{for per in person:}}
<h4>{{=per.name}}</h4>
<p>{{=per.description}}</p>  ....... >>>>>> i want to get some of the
description for every person in the table ..

{{pass}}

Reply via email to