[Python-checkins] r69782 - in tracker/instances/python-dev/html: issue.item.html style.css
martin.v.loewis
python-checkins at python.org
Thu Feb 19 21:11:31 CET 2009
Author: martin.v.loewis
Date: Thu Feb 19 21:11:31 2009
New Revision: 69782
Log:
Issue #207: style dependencies by status.
Modified:
tracker/instances/python-dev/html/issue.item.html
tracker/instances/python-dev/html/style.css
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 Thu Feb 19 21:11:31 2009
@@ -89,12 +89,12 @@
<th>
<tal:block i18n:translate="">Dependencies</tal:block>:
<span tal:condition="context/dependencies/is_edit_ok"
- tal:replace="structure python:db.issue.classhelp('id,title', filter='status=0,1', property='dependencies')" />
+ tal:replace="structure python:db.issue.classhelp('id,title,status', filter='status=0,1', property='dependencies')" />
</th>
<td>
<span tal:replace="structure python:context.dependencies.field(showid=1,size=20)" />
<span tal:condition="context/dependencies" tal:repeat="d python:context.dependencies.sorted('creation')">
- <br/>View: <a tal:attributes="href string:issue${d/id}" tal:content="d/id"></a>
+ <br/>View: <a tal:attributes="href string:issue${d/id}; class string:${d/status}" tal:content="d/id"></a>
</span>
</td>
<th i18n:translate="">
Modified: tracker/instances/python-dev/html/style.css
==============================================================================
--- tracker/instances/python-dev/html/style.css (original)
+++ tracker/instances/python-dev/html/style.css Thu Feb 19 21:11:31 2009
@@ -465,3 +465,16 @@
font-size: 110%;
color: red;
}
+
+
+.open {
+
+}
+
+.pending {
+
+}
+
+.closed {
+text-decoration: line-through !important;
+}
More information about the Python-checkins
mailing list