view zpt/HTML_schema_table.zpt @ 44:c6c47034d2a4

more refactoring of templates gis can be rendered by pagetemplate
author casties
date Thu, 02 Sep 2010 16:38:50 +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); 
    schema options/schema; table options/table; data python:here.getTable(schema=schema,table=table);
    fields data/fields; rows 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:layout=='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>