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

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


Author: erik.forsberg
Date: Sun Dec 10 10:25:16 2006
New Revision: 52981

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

* Show resolution, if search query asks for it.


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 10:25:16 2006
@@ -29,7 +29,8 @@
    <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/status" i18n:translate="">Status</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>
    <th tal:condition="request/show/assignee" i18n:translate="">Assigned&nbsp;To</th>
   </tr>
@@ -59,6 +60,8 @@
    </td>
    <td tal:condition="request/show/status"
        tal:content="python:i.status.plain() or default">&nbsp;</td>
+   <td tal:condition="request/show/resolution"
+       tal:content="python:i.resolution.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/creator"
        tal:content="python:i.creator.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/assignee"


More information about the Python-checkins mailing list