Roundup Tracker - Issues

Issue 1593025

classification
Sorting problem in issue.index.html
Type: Severity: normal
Components: Web interface Versions:
process
Status: closed fixed
:
: richard : oscarspaz, richard
Priority: normal :

Created on 2006-11-08 23:20 by anonymous, last changed 2006-11-09 04:55 by oscarspaz.

Messages
msg2338 Author: [hidden] (anonymous) Date: 2006-11-08 23:20
Roundup1.2.x
Installed the basic setup and use web interface to
enter a few tickets and the sort and group will not
sort in descending order.

Resolve by fixing these lines in issue.index.html.
From:

<input type="checkbox" name="@sortdir"
              tal:attributes="checked python:key and
key[0] == '-'">

To:
<input type="checkbox" 
              tal:attributes="name
python:'@sortdir%d'%n;checked python:key and key[0] ==
'-'">

Did the same fix for group. 

The query string now reads
     ...@sortdir0=on....

instead of
     ...@sortdir=on....

With this fix, sort/group working again!
msg2339 Author: [hidden] (richard) Date: 2006-11-09 00:43
Logged In: YES 
user_id=6405

Thanks!
msg2340 Author: [hidden] (oscarspaz) Date: 2006-11-09 04:55
Logged In: YES 
user_id=1640893

Thanks for such a quick response. 
History
Date User Action Args
2006-11-08 23:20:34anonymouscreate