你们迄今为止做了哪些尝试? 就像你想要一个有色人的数据模型一样:
(在模型/模式中??)py - 确保其执行。 页: 1
db.define_table( table_name ,
Field( SomeFieldA , boolean )
Field( SomeFieldB , boolean )
Field( SomeFieldC , boolean )
Field( SomeFieldD , boolean )
... etc ...
)
你可能必须采用一种习俗形式,以获得你想要的布局,因为我可以想出一种出路去做。
阅读。
你们需要首先做这样的事情:
<table>
{{=form.custom.begin}}
<thead>
<tr>
{{ #loop over form field labels... something like:
for field in form.fields: }}
<th>{{=field.label}}</th>
{{ pass }}
</tr>
</thead>
<tbody>
<tr>
{{for field in form.fields: }}
<td>{{ =form.custom.widget[field] }}</td>
{{ # or directly access it without a loop with form.custom.widget.SomeFieldA }}
{{ pass }}
</tr>
</tbody>
{{=form.custom.submit}}
{{=form.custom.end}}
</table>
请注意,我已经对《纽约公约》进行了测试,我可能错误地进入形式领域和标签。 如果你需要预先填写表格,则在控制器中填写。 上文关于习俗表格的链接也讨论了预先流行的问题。