diff roundup/templates/classic/html/_generic.help @ 1078:344bad728d10

more tweakage of help display and style issues
author Richard Jones <richard@users.sourceforge.net>
date Mon, 09 Sep 2002 04:43:10 +0000
parents c28603c9f831
children a51c2a389c13
line wrap: on
line diff
--- a/roundup/templates/classic/html/_generic.help	Mon Sep 09 03:28:20 2002 +0000
+++ b/roundup/templates/classic/html/_generic.help	Mon Sep 09 04:43:10 2002 +0000
@@ -1,11 +1,15 @@
-<table tal:define="props python:request.form['properties'].value.split(',')"
-       border=1 cellspacing=0 cellpadding=2>
-<tr>
- <th align=left tal:repeat="prop props" tal:content="prop"></th>
-</tr>
-<tr tal:repeat="item klass/list">
- <td align="left" valign="top" tal:repeat="prop props"
-     tal:content="python:item[prop]"></td>
+<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>

Roundup Issue Tracker: http://roundup-tracker.org/