[Python-checkins] r88874 - tracker/instances/python-dev/rietveld/templates/issue_base.html

ezio.melotti python-checkins at python.org
Sat Aug 6 15:05:14 CEST 2011


Author: ezio.melotti
Date: Sat Aug  6 15:05:14 2011
New Revision: 88874

Log:
Make the issue link in the review page link back to the roundup page.

Modified:
   tracker/instances/python-dev/rietveld/templates/issue_base.html

Modified: tracker/instances/python-dev/rietveld/templates/issue_base.html
==============================================================================
--- tracker/instances/python-dev/rietveld/templates/issue_base.html	(original)
+++ tracker/instances/python-dev/rietveld/templates/issue_base.html	Sat Aug  6 15:05:14 2011
@@ -38,9 +38,8 @@
 	   height="15" border="0"></a>
 </span>
 {%endif%}
-    Issue <a href="{%url codereview.views.show issue.key.id%}"
-               onmouseover="M_showPopUp(this, 'popup-issue');">
-            {{issue.key.id}}</a>:
+    <a href="/issue{{issue.key.id}}"
+       onmouseover="M_showPopUp(this, 'popup-issue');">#{{issue.key.id}}</a>:
     {{issue.subject}} {%if issue.closed %} (Closed) {%endif%}
   </h2>
 


More information about the Python-checkins mailing list