[Python-checkins] r69779 - in tracker/instances/python-dev/html: home.html page.html

martin.v.loewis python-checkins at python.org
Thu Feb 19 21:01:13 CET 2009


Author: martin.v.loewis
Date: Thu Feb 19 21:01:13 2009
New Revision: 69779

Log:
Issue #180: Add type to issue listings.


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

Modified: tracker/instances/python-dev/html/home.html
==============================================================================
--- tracker/instances/python-dev/html/home.html	(original)
+++ tracker/instances/python-dev/html/home.html	Thu Feb 19 21:01:13 2009
@@ -6,5 +6,5 @@
 -->
 <span tal:replace="structure python:db.issue.renderWith('index',
     sort=[('-', 'activity')], filter=['status'],
-    columns=['id','activity','title','creator','assignee', 'status'],
+    columns=['id', 'activity', 'title', 'creator', 'assignee', 'status', 'type'],
     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	Thu Feb 19 21:01:13 2009
@@ -21,7 +21,7 @@
 tal:define="
 kw_create python:request.user.hasPermission('Create', 'keyword');
 columns string:id,activity,title,creator,status;
-columns_showall string:id,activity,title,creator,assignee,status;
+columns_showall string:id,activity,title,creator,assignee,status,type;
 status_notresolved string:-1,1,3;
 ">
   <!--  Logo  -->


More information about the Python-checkins mailing list