[Mpuls-commits] r2060 - wasko/branches/2.0/mpulsweb/templates/phase

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Mar 23 09:03:32 CET 2010


Author: torsten
Date: 2010-03-23 09:03:30 +0100 (Tue, 23 Mar 2010)
New Revision: 2060

Modified:
   wasko/branches/2.0/mpulsweb/templates/phase/phase.mako
Log:
* mpulsweb/templates/phase/phase.mako: Do not escape links on phase
page.


Modified: wasko/branches/2.0/mpulsweb/templates/phase/phase.mako
===================================================================
--- wasko/branches/2.0/mpulsweb/templates/phase/phase.mako	2010-03-23 08:01:14 UTC (rev 2059)
+++ wasko/branches/2.0/mpulsweb/templates/phase/phase.mako	2010-03-23 08:03:30 UTC (rev 2060)
@@ -52,7 +52,7 @@
         % else:
         <td class="error"></td>
         % endif
-        <td class="note" style="border-bottom: 1pt dotted; border-color: #000;">${p1.getLinks()}</td>
+        <td class="note" style="border-bottom: 1pt dotted; border-color: #000;">${h.literal(p1.getLinks())}</td>
         <td class="note center middle" style="border-bottom: 1pt dotted; border-color: #000;">
           ${h.NA(h.format_date(p1.getTime()))}
         </td>
@@ -70,7 +70,7 @@
         % else:
         <td class="error"></td>
         % endif
-        <td class="note">${p2.getLinks()}</td>
+        <td class="note">${h.literal(p2.getLinks())}</td>
         <td class="note center middle">${h.NA(h.format_date(p2.getTime()))}</td>
         <td class="actions">
           % if p2.is_ok() and phases_are_valid and abs(int(p2.id) - int(current_phase)) == 1:



More information about the Mpuls-commits mailing list