diff roundup/templates/classic/html/issue.index @ 1079:04b44df7af1d

removed some property name clashes
author Richard Jones <richard@users.sourceforge.net>
date Mon, 09 Sep 2002 05:28:48 +0000
parents cf30c6cdca02
children d7e27a153b40
line wrap: on
line diff
--- a/roundup/templates/classic/html/issue.index	Mon Sep 09 04:43:10 2002 +0000
+++ b/roundup/templates/classic/html/issue.index	Mon Sep 09 05:28:48 2002 +0000
@@ -60,9 +60,9 @@
     <select name=":sort">
      <option value="">- nothing -</option>
      <option tal:repeat="col context/properties"
-             tal:attributes="value col/name;
-                             selected python:col.name == request.sort[1]"
-             tal:content="col/name">column</option>
+             tal:attributes="value col/_name;
+                             selected python:col._name == request.sort[1]"
+             tal:content="col/_name">column</option>
     </select>
    </td>
    <th>Descending:</th>
@@ -76,9 +76,9 @@
     <select name=":group">
      <option value="">- nothing -</option>
      <option tal:repeat="col context/properties"
-             tal:attributes="value col/name;
-                             selected python:col.name == request.group[1]"
-             tal:content="col/name">column</option>
+             tal:attributes="value col/_name;
+                             selected python:col._name == request.group[1]"
+             tal:content="col/_name">column</option>
     </select>
    </td>
    <th>Descending:</th>

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