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

ezio.melotti python-checkins at python.org
Sun Aug 21 17:26:12 CEST 2011


Author: ezio.melotti
Date: Sun Aug 21 17:26:12 2011
New Revision: 88885

Log:
#418: write a note in the issue page when its status is "closed".

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	Sun Aug 21 17:26:12 2011
@@ -234,6 +234,9 @@
  by <b><tal:x replace="context/creator" i18n:name="creator" /></b>,
  last changed <b><tal:x replace="python:context.activity.pretty('%Y-%m-%d %H:%M')" i18n:name="activity" /></b>
  by <b><tal:x replace="context/actor" i18n:name="actor" /></b>.
+ <tal:block tal:condition="python:str(context.status) == 'closed'">
+  This issue is now <strong style="color:#00F; background-color:inherit;">closed</strong>.
+ </tal:block>
 </p>
 
 <table class="files" tal:condition="context/files">


More information about the Python-checkins mailing list