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

ezio.melotti python-checkins at python.org
Sun Aug 21 17:36:44 CEST 2011


Author: ezio.melotti
Date: Sun Aug 21 17:36:44 2011
New Revision: 88886

Log:
Use <strong> instead of <b> and tal:content instead od tal:replace.

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:36:44 2011
@@ -230,10 +230,10 @@
 </form>
 
 <p tal:condition="context/id" i18n:translate="">
- Created on <b><tal:x replace="python:context.creation.pretty('%Y-%m-%d %H:%M')" i18n:name="creation" /></b>
- 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>.
+ Created on <strong tal:content="python:context.creation.pretty('%Y-%m-%d %H:%M')" i18n:name="creation" />
+ by <strong tal:content="context/creator" i18n:name="creator" />,
+ last changed <strong tal:content="python:context.activity.pretty('%Y-%m-%d %H:%M')" i18n:name="activity" />
+ by <strong tal:content="context/actor" i18n:name="actor" />.
  <tal:block tal:condition="python:str(context.status) == 'closed'">
   This issue is now <strong style="color:#00F; background-color:inherit;">closed</strong>.
  </tal:block>


More information about the Python-checkins mailing list