diff templates/minimal/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 0548fa01842b 6d973371e29f
line wrap: on
line diff
--- a/templates/minimal/html/_generic.help.html	Tue Nov 11 22:37:25 2003 +0000
+++ b/templates/minimal/html/_generic.help.html	Wed Nov 12 01:00:59 2003 +0000
@@ -16,7 +16,7 @@
   </head>
  <body class="body" marginwidth="0" marginheight="0" onload="resetList();">
  <form name="frm_help" action=""
-       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(',')">
      
@@ -59,14 +59,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}">&lt;&lt; previous</a>
+           tal:attributes="href string:${request/classname}?@template=help&@startwith=${prev/first}&properties=${request/form/properties/value}">&lt;&lt; previous</a>
         &nbsp;
        </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 &gt;&gt;</a>
+           tal:attributes="href string:${request/classname}?@template=help&@startwith=${next/first}&properties=${request/form/properties/value}">next &gt;&gt;</a>
         &nbsp;
        </th>
       </tr>

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