view zpt/XML_schema_table.zpt @ 37:b356b86773a1

Merge with falks stuff b915bce653725bd0690605119fc9b3123253e560
author casties
date Wed, 01 Sep 2010 18:47:06 +0200
parents b8922e13e7b5
children c6c47034d2a4
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<table xmlns:tal="http://xml.zope.org/namespaces/tal" 
  tal:define="fields options/data/fields" tal:attributes="name options/tablename">
  <row tal:repeat="row options/data/rows">
	<column tal:repeat="col row" tal:content="python:col" tal:attributes="name python:fields[repeat['col'].index][0]"/>
  </row>
</table>