[Python-checkins] r70241 - in tracker/instances/python-dev/html: issue.index.html issue.search.html

martin.v.loewis python-checkins at python.org
Sun Mar 8 11:58:40 CET 2009


Author: martin.v.loewis
Date: Sun Mar  8 11:58:39 2009
New Revision: 70241

Log:
Issue #242: Add 'Stage' to search results page.


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

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 Mar  8 11:58:39 2009
@@ -31,6 +31,7 @@
    <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/versions" i18n:translate="">Versions</th>
+   <th tal:condition="request/show/stage" i18n:translate="">Stage</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>
@@ -68,6 +69,8 @@
        tal:content="python:i.components.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/versions"
        tal:content="python:i.versions.plain() or default">&nbsp;</td>
+   <td tal:condition="request/show/stage"
+       tal:content="python:i.stage.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 Mar  8 11:58:39 2009
@@ -68,7 +68,6 @@
     <td metal:use-macro="column_input"></td>
     <td metal:use-macro="sort_input"></td>
     <td metal:use-macro="group_input"></td>
-    <td>&nbsp;</td>
 </tr>
 
 <tr tal:define="name string:creation">


More information about the Python-checkins mailing list