diff templates/classic/html/issue.index.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 fad32dafc174
children 3a4abf6d48c2
line wrap: on
line diff
--- a/templates/classic/html/issue.index.html	Tue Nov 11 22:37:25 2003 +0000
+++ b/templates/classic/html/issue.index.html	Wed Nov 12 01:00:59 2003 +0000
@@ -64,7 +64,7 @@
      <th>
       <a tal:define="prev batch/previous" tal:condition="prev"
          tal:attributes="href python:request.indexargs_href(request.classname,
-         {':startwith':prev.first, ':pagesize':prev.size})">&lt;&lt; previous</a>
+         {'@startwith':prev.first, '@pagesize':prev.size})">&lt;&lt; previous</a>
       &nbsp;
      </th>
      <th tal:content="python: '%d...%d out of %d'%(batch.start,
@@ -72,7 +72,7 @@
      <th>
       <a tal:define="next batch/next" tal:condition="next"
          tal:attributes="href python:request.indexargs_href(request.classname,
-         {':startwith':next.first, ':pagesize':next.size})">next &gt;&gt;</a>
+         {'@startwith':next.first, '@pagesize':next.size})">next &gt;&gt;</a>
       &nbsp;
      </th>
     </tr>
@@ -87,7 +87,7 @@
   <tr tal:condition="batch">
    <th>Sort on:</th>
    <td>
-    <select name=":sort">
+    <select name="@sort">
      <option value="">- nothing -</option>
      <option tal:repeat="col context/properties"
              tal:attributes="value col/_name;
@@ -96,14 +96,14 @@
     </select>
    </td>
    <th>Descending:</th>
-   <td><input type="checkbox" name=":sortdir"
+   <td><input type="checkbox" name="@sortdir"
               tal:attributes="checked python:request.sort[0] == '-'"> 
    </td>
   </tr>
   <tr>
    <th>Group on:</th>
    <td>
-    <select name=":group">
+    <select name="@group">
      <option value="">- nothing -</option>
      <option tal:repeat="col context/properties"
              tal:attributes="value col/_name;
@@ -112,7 +112,7 @@
     </select>
    </td>
    <th>Descending:</th>
-   <td><input type="checkbox" name=":groupdir"
+   <td><input type="checkbox" name="@groupdir"
               tal:attributes="checked python:request.group[0] == '-'"> 
    </td>
   </tr>
@@ -128,4 +128,3 @@
 
 </td>
 </tal:block>
-

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