Mercurial > p > roundup > code
diff templates/classic/html/_generic.help.html @ 1911:f5c804379c85
fixed ZRoundup - mostly changes to classic template
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 12 Nov 2003 01:00:59 +0000 |
| parents | 00f0267db956 |
| children | 3a4abf6d48c2 |
line wrap: on
line diff
--- a/templates/classic/html/_generic.help.html Tue Nov 11 22:37:25 2003 +0000 +++ b/templates/classic/html/_generic.help.html Wed Nov 12 01:00:59 2003 +0000 @@ -1,7 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> - <link rel="stylesheet" type="text/css" href="_file/style.css" /> + <link rel="stylesheet" type="text/css" href="@@file/style.css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8;" /> <tal:block tal:condition="python:request.form.has_key('property')"> <title tal:content="string:${request/form/property/value} help">Property</title> @@ -10,13 +10,13 @@ // this is the name of the field in the original form that we're working on field = '${request/form/property/value}';" > </script> - <script src="_file/help_controls.js" type="text/javascript"><!-- + <script src="@@file/help_controls.js" type="text/javascript"><!-- //--></script> </tal:block> </head> <body class="body" onload="resetList();"> <form name="frm_help" tal:attributes="action request/base" - tal:define="start python:int(request.form[':startwith'].value); + tal:define="start python:int(request.form['@startwith'].value); batch python:utils.Batch(context.list(), 500, start); props python:request.form['properties'].value.split(',')"> @@ -60,14 +60,14 @@ <tr class="navigation"> <th> <a tal:define="prev batch/previous" tal:condition="prev" - tal:attributes="href string:${request/classname}?:template=help&:startwith=${prev/first}&properties=${request/form/properties/value}"><< previous</a> + tal:attributes="href string:${request/classname}?@template=help&@startwith=${prev/first}&properties=${request/form/properties/value}"><< previous</a> </th> <th tal:content="python: '%d...%d out of %d'%(batch.start, batch.start+batch.length-1, batch.sequence_length)">current</th> <th> <a tal:define="next batch/next" tal:condition="next" - tal:attributes="href string:${request/classname}?:template=help&:startwith=${next/first}&properties=${request/form/properties/value}">next >></a> + tal:attributes="href string:${request/classname}?@template=help&@startwith=${next/first}&properties=${request/form/properties/value}">next >></a> </th> </tr>
