[Python-checkins] r57410 - tracker/instances/python-dev/html/home.html tracker/instances/python-dev/html/page.html

erik.forsberg python-checkins at python.org
Fri Aug 24 21:47:58 CEST 2007


Author: erik.forsberg
Date: Fri Aug 24 21:47:58 2007
New Revision: 57410

Modified:
   tracker/instances/python-dev/html/home.html
   tracker/instances/python-dev/html/page.html
Log:

Group by priority, not by severity.

Fixes http://psf.upfronthosting.co.za/roundup/meta/issue136.


Modified: tracker/instances/python-dev/html/home.html
==============================================================================
--- tracker/instances/python-dev/html/home.html	(original)
+++ tracker/instances/python-dev/html/home.html	Fri Aug 24 21:47:58 2007
@@ -5,6 +5,6 @@
  whatever. It's a good idea to have the issues on the front page though
 -->
 <span tal:replace="structure python:db.issue.renderWith('index',
-    sort=[('-', 'activity')], group=[('+', 'severity')], filter=['status'],
+    sort=[('-', 'activity')], group=[('+', 'priority')], filter=['status'],
     columns=['id','activity','title','creator','assignee', 'status'],
     filterspec={'status':['1','3']})" />

Modified: tracker/instances/python-dev/html/page.html
==============================================================================
--- tracker/instances/python-dev/html/page.html	(original)
+++ tracker/instances/python-dev/html/page.html	Fri Aug 24 21:47:58 2007
@@ -38,7 +38,7 @@
        <input type="hidden" name="@columns"
               tal:attributes="value columns_showall"/>
        <input type="hidden" name="@sort" value="-activity" />
-       <input type="hidden" name="@group" value="severity" />
+       <input type="hidden" name="@group" value="priority" />
        <input type="hidden" name="@filter" value="status"/>
        <input type="hidden" name="status" tal:attributes="value status_notresolved"/>
        <input class="input-text" id="search-text" name="@search_text" size="10" />
@@ -75,7 +75,7 @@
     <li><a href="#"
        tal:attributes="href python:request.indexargs_url('issue', {
       '@sort': '-activity',
-      '@group': 'severity',
+      '@group': 'priority',
       '@filter': 'status',
       '@columns': columns_showall,
       '@search_text': '',
@@ -86,7 +86,7 @@
     <li><a href="#"
        tal:attributes="href python:request.indexargs_url('issue', {
       '@sort': '-activity',
-      '@group': 'severity',
+      '@group': 'priority',
       '@filter': 'status,assignee',
       '@columns': columns,
       '@search_text': '',
@@ -143,7 +143,7 @@
     <a href="#"
        tal:attributes="href python:request.indexargs_url('issue', {
       '@sort': '-activity',
-      '@group': 'severity',
+      '@group': 'priority',
       '@filter': 'status,assignee',
       '@columns': 'id,activity,title,creator,status',
       '@search_text': '',


More information about the Python-checkins mailing list