Mercurial > hg > ChinaGisRestApi
view zpt/HTML_schema.zpt @ 75:20ba7e626692
htmlHead() included
author | fknauft |
---|---|
date | Thu, 02 Sep 2010 11:44:27 +0200 |
parents | 76ac7a721273 |
children | ed8db63fab4f |
line wrap: on
line source
<html tal:define="layout python:request.get('layout','table'); element_id python:request.get('element_id',None)"> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title tal:content="template/title">The title</title> </head> <body> <h2>List of tables for schema <span tal:replace="options/schema"/></h2> <tal:block tal:condition="python:layout=='select'"> <select tal:attributes="id element_id"> <option tal:repeat="tbl options/data/rows" tal:content="python:tbl[0]"/> </select> </tal:block> <tal:block tal:condition="python:layout=='table'"> <table tal:attributes="id element_id"> <tr tal:repeat="row options/data/rows"> <td><a tal:define="tbl python:row[0]" tal:attributes="href tbl" tal:content="tbl"/></td> </tr> </table> </tal:block> </body> </html>