Mercurial > hg > ChinaGisRestApi
view zpt/HTML_table.zpt @ 7:bd52d9445a41
trying to rework
author | casties |
---|---|
date | Tue, 20 Jul 2010 15:09:32 +0200 |
parents | e3ee1f358fe6 |
children |
line wrap: on
line source
<html tal:define="format python:request.get('format','table'); element_id python:request.get('element_id',None); fields options/data/fields; rows options/data/rows;"> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title tal:content="template/title">The title</title> </head> <body> <h2>table <span tal:replace="options/tablename"/></h2> <tal:block tal:condition="python:format=='table'"> <table tal:attributes="id element_id"> <thead> <tr> <th tal:repeat="field fields" tal:content="python:field[0]"/> </tr> </thead> <tbody> <tr tal:repeat="row rows"> <td tal:repeat="col row" tal:content="col"/> </tr> </tbody> </table> </tal:block> </body> </html>