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

martin.v.loewis python-checkins at python.org
Sat Feb 20 17:08:02 CET 2010


Author: martin.v.loewis
Date: Sat Feb 20 17:08:02 2010
New Revision: 78251

Log:
Issue #319: Add more queries to the menu.


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

Modified: tracker/instances/python-dev/html/page.html
==============================================================================
--- tracker/instances/python-dev/html/page.html	(original)
+++ tracker/instances/python-dev/html/page.html	Sat Feb 20 17:08:02 2010
@@ -113,6 +113,32 @@
       '@startwith': 0,
      })"
        i18n:translate="">Show Unassigned</a></li>
+    <li><a href="#"
+       tal:attributes="href python:request.indexargs_url('issue', {
+      '@sort': '-activity',
+      '@group': 'priority',
+      '@filter': 'status,assignee',
+      '@columns': columns,
+      '@search_text': '',
+      'keywords': 4,
+      'status': status_notresolved,
+      '@dispname': i18n.gettext('Show Needing Review'),
+      '@startwith': 0,
+     })"
+       i18n:translate="">Show Needing Review</a></li>
+    <li><a href="#"
+       tal:attributes="href python:request.indexargs_url('issue', {
+      '@sort': '-activity',
+      '@group': 'priority',
+      '@filter': 'status,assignee',
+      '@columns': columns,
+      '@search_text': '',
+      'keywords': 5,
+      'status': status_notresolved,
+      '@dispname': i18n.gettext('Show Having Patch'),
+      '@startwith': 0,
+     })"
+       i18n:translate="">Show Having Patch</a></li>
         <li>
          <a href="issue?@template=search&status=1" i18n:translate="">Search</a>
         </li>


More information about the Python-checkins mailing list