[Python-checkins] r52849 - tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/html/issue.search.html

stefan.seefeld python-checkins at python.org
Mon Nov 27 14:52:37 CET 2006


Author: stefan.seefeld
Date: Mon Nov 27 14:52:36 2006
New Revision: 52849

Modified:
   tracker/instances/python-dev/html/issue.item.html
   tracker/instances/python-dev/html/issue.search.html
Log:
Re-add 'priority'.

Modified: tracker/instances/python-dev/html/issue.item.html
==============================================================================
--- tracker/instances/python-dev/html/issue.item.html	(original)
+++ tracker/instances/python-dev/html/issue.item.html	Mon Nov 27 14:52:36 2006
@@ -140,7 +140,13 @@
   <span tal:replace="structure context/nosy/field" />
  </td>
 </tr>
-
+<tr>
+ <th i18n:translate="">
+   <span tal:replace="structure python:db.priority.classhelp('id,name,description',label='Priority')" />:
+ </th>
+ <td tal:content="structure context/priority/menu">priority</td>
+ <td></td><td></td>
+</tr>
 <tr tal:condition="context/is_edit_ok">
  <th><tal:block i18n:translate="">Change Note</tal:block>:</th>
  <td colspan="3">

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	Mon Nov 27 14:52:36 2006
@@ -198,6 +198,19 @@
   <td metal:use-macro="group_input"></td>
 </tr>
 
+<tr tal:define="name string:priority;
+                db_klass string:priority;
+                db_content string:name;">
+  <th i18n:translate="">Priority:</th>
+  <td metal:use-macro="search_select_translated">
+    <option metal:fill-slot="extra_options" value="-1" i18n:translate=""
+            tal:attributes="selected python:value == '-1'">not selected</option>
+  </td>
+  <td metal:use-macro="column_input"></td>
+  <td metal:use-macro="sort_input"></td>
+  <td metal:use-macro="group_input"></td>
+</tr>
+
 <tr tal:define="name string:status;
                 db_klass string:status;
                 db_content string:name;">


More information about the Python-checkins mailing list