view zpt/XML_table.zpt @ 7:bd52d9445a41

trying to rework
author casties
date Tue, 20 Jul 2010 15:09:32 +0200
parents 61a3764cd5fb
children
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/names" tal:attributes="name options/tablename">
  <row tal:repeat="row options/data">
	<column tal:repeat="field fields" tal:attributes="name field" tal:content="python:row[field]"/>
  </row>
</table>