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

martin.v.loewis python-checkins at python.org
Sat Mar 21 22:23:42 CET 2009


Author: martin.v.loewis
Date: Sat Mar 21 22:23:42 2009
New Revision: 70516

Log:
Issue #251: Don't try to print nosy_count for new issues.


Modified:
   tracker/instances/python-dev/html/issue.item.html

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	Sat Mar 21 22:23:42 2009
@@ -136,7 +136,7 @@
  </th>
  <td>
      <span tal:replace="structure context/nosy/field" />
-     <span tal:replace="python: '(%d)' % context.nosy_count" />
+     <span tal:condition="context/nosy_count" tal:replace="python: '(%d)' % context.nosy_count" />
  </td>
 </tr>
 <tr>


More information about the Python-checkins mailing list