[Python-checkins] r52983 - tracker/instances/python-dev/html/issue.index.html tracker/instances/python-dev/html/issue.search.html

erik.forsberg python-checkins at python.org
Sun Dec 10 11:26:22 CET 2006


Author: erik.forsberg
Date: Sun Dec 10 11:26:05 2006
New Revision: 52983

Modified:
   tracker/instances/python-dev/html/issue.index.html
   tracker/instances/python-dev/html/issue.search.html
Log:

* Display components in list if asked for by search query.


Modified: tracker/instances/python-dev/html/issue.index.html
==============================================================================
--- tracker/instances/python-dev/html/issue.index.html	(original)
+++ tracker/instances/python-dev/html/issue.index.html	Sun Dec 10 11:26:05 2006
@@ -29,6 +29,7 @@
    <th tal:condition="request/show/activity" i18n:translate="">Activity</th>
    <th tal:condition="request/show/actor" i18n:translate="">Actor</th>
    <th tal:condition="request/show/title" i18n:translate="">Title</th>
+   <th tal:condition="request/show/components" i18n:translate="">Components</th>
    <th tal:condition="request/show/status"    i18n:translate="">Status</th>
    <th tal:condition="request/show/resolution" i18n:translate="">Resolution</th>
    <th tal:condition="request/show/creator" i18n:translate="">Creator</th>
@@ -58,6 +59,8 @@
     <a tal:attributes="href string:issue${i/id}"
 		tal:content="python:str(i.title.plain(hyperlink=0)) or '[no title]'">title</a>
    </td>
+   <td tal:condition="request/show/components"
+       tal:content="python:i.components.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/status"
        tal:content="python:i.status.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/resolution"

Modified: tracker/instances/python-dev/html/issue.search.html
==============================================================================
--- tracker/instances/python-dev/html/issue.search.html	(original)
+++ tracker/instances/python-dev/html/issue.search.html	Sun Dec 10 11:26:05 2006
@@ -115,7 +115,7 @@
   <td metal:use-macro="group_input"></td>
 </tr>
 
-<tr tal:define="name string:component;
+<tr tal:define="name string:components;
                 db_klass string:component;
                 db_content string:name;">
   <th i18n:translate="">Components:</th>


More information about the Python-checkins mailing list