Mercurial > p > roundup > code
view roundup/templates/classic/html/_generic.help @ 1204:b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
changed the default CSS style to be less offensive to some ;)
better handling of Page Template compilation errors
removed dependency on ComputedAttribute
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Sep 2002 02:10:25 +0000 |
| parents | 344bad728d10 |
| children | a51c2a389c13 |
line wrap: on
line source
<html> <head> <link rel="stylesheet" type="text/css" href="_file/style.css"> </head> <body class="body" marginwidth="0" marginheight="0"> <table class="classhelp" tal:define="props python:request.form['properties'].value.split(',')"> <tr><th tal:repeat="prop props" tal:content="prop"></th></tr> <tr tal:repeat="item context/list"> <td tal:repeat="prop props" tal:content="python:item[prop]"></td> </tr> </table> </body>
