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

paul.dubois python-checkins at python.org
Fri Jan 12 18:58:00 CET 2007


Author: paul.dubois
Date: Fri Jan 12 18:58:00 2007
New Revision: 53400

Modified:
   tracker/instances/python-dev/html/issue.index.html
   tracker/instances/python-dev/html/issue.search.html
Log:
Fix search display to include all fields whose display box is checked.
Remove condition on anonymous user seeing user-based fields.
Fix type on actor search, which was 'date'.
Resolves meta-tracker issue #65.


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	Fri Jan 12 18:58:00 2007
@@ -36,6 +36,8 @@
    <th tal:condition="request/show/creator" i18n:translate="">Creator</th>
    <th tal:condition="request/show/assignee" i18n:translate="">Assigned&nbsp;To</th>
    <th tal:condition="request/show/keywords" i18n:translate="">Keywords</th>
+   <th tal:condition="request/show/dependencies" i18n:translate="">Depends On</th>
+   <th tal:condition="request/show/type" i18n:translate="">Type</th>
   </tr>
  <tal:block tal:repeat="i batch" condition=true>
   <tr tal:define="group python:[r[1] for r in request.group]"
@@ -55,7 +57,7 @@
        tal:content="i/creation/reldate">&nbsp;</td>
    <td class="date" tal:condition="request/show/activity"
        tal:content="i/activity/reldate">&nbsp;</td>
-   <td class="date" tal:condition="request/show/actor"
+   <td tal:condition="request/show/actor"
        tal:content="python:i.actor.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/title">
     <a tal:attributes="href string:issue${i/id}"
@@ -75,6 +77,10 @@
        tal:content="python:i.assignee.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/keywords"
        tal:content="python:i.keywords.plain() or default">&nbsp;</td>
+   <td tal:condition="request/show/dependencies"
+       tal:content="python:i.dependencies.plain() or default">&nbsp;</td>
+   <td tal:condition="request/show/type"
+       tal:content="python:i.type.plain() or default">&nbsp;</td>
   </tr>
 
  </tal:block>

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	Fri Jan 12 18:58:00 2007
@@ -68,8 +68,7 @@
 
 <tr tal:define="name string:creator;
                 db_klass string:user;
-                db_content string:username;"
-    tal:condition="db/user/is_view_ok">
+                db_content string:username;">
   <th i18n:translate="">Creator:</th>
   <td metal:use-macro="search_input">
     <option metal:fill-slot="extra_options" i18n:translate=""
@@ -90,8 +89,7 @@
 
 <tr tal:define="name string:actor;
                 db_klass string:user;
-                db_content string:username;"
-    tal:condition="db/user/is_view_ok">
+                db_content string:username;">
   <th i18n:translate="">Actor:</th>
   <td metal:use-macro="search_input">
     <option metal:fill-slot="extra_options" i18n:translate=""
@@ -166,8 +164,7 @@
 
 <tr tal:define="name string:assignee;
                 db_klass string:user;
-                db_content string:username;"
-    tal:condition="db/user/is_view_ok">
+                db_content string:username;">
   <th i18n:translate="">Assigned to:</th>
   <td metal:use-macro="search_input">
     <tal:block metal:fill-slot="extra_options">


More information about the Python-checkins mailing list