質問

I want to know how to use this tal:repeat in my case. For example, I made this two codes:

tr>

  td tal:repeat="table_info table_info" tal:content="table_info/Field"/>

/tr>

tr tal:repeat="select_all select_all">

  1td tal:content="select_all/ (here) "/>

  2td tal:content="select_all/ (here) "/>

  3td tal:content="select_all/ (here) "/>

/tr>

If table_info/Field has 3 field names(length=3(no, id, pw)), how create three <td> and insert no,id,pw at (here)

役に立ちましたか?

解決

I'm guessing you want to read key from select_all that is in table_info:

If table_info/Field/id is foo, then it will read select_all/foo.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top