Code

don't display Editing on read-only pages (sf bug 651967)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 26 Feb 2003 05:12:38 +0000 (05:12 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 26 Feb 2003 05:12:38 +0000 (05:12 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1551 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/templates/classic/html/issue.item

index 688f2d992433b8adba3f46ee982b8cd9b9195b86..ceac852ac962214782c4b132976ee8c0f1447577 100644 (file)
@@ -66,6 +66,7 @@ are given with the most recent entry first.
 - added Node.get() method
 - open static files using binary mode (sf bug 693208)
 - fixed deja-vu bug 692910
+- don't display "Editing" on read-only pages (sf bug 651967)
 
 
 2003-??-?? 0.5.6
index 3e26a06c79d310058aab1a1ecf93925dcd2decd2..0fcc722aea9bc31baa093fc9db9cd6e877c6a875 100644 (file)
@@ -5,7 +5,8 @@
 </title>
 <td class="page-header-top" metal:fill-slot="body_title">
  <h2>
-  Issue<span tal:replace="context/id" /> Editing
+  Issue<span tal:replace="context/id" />
+   <tal:x tal:condition="context/is_edit_ok">Editing</tal:x>
  </h2>
 </td>