Code

added another example
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 18 Sep 2003 23:41:01 +0000 (23:41 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 18 Sep 2003 23:41:01 +0000 (23:41 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1883 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/customizing.txt

index 7142592a35a0f360f1aee9d7f601ff18710e67c7..ee861d306d6336cc8bcc73d5f2bedc859c969570 100644 (file)
@@ -2,7 +2,7 @@
 Customising Roundup
 ===================
 
-:Version: $Revision: 1.98 $
+:Version: $Revision: 1.99 $
 
 .. This document borrows from the ZopeBook section on ZPT. The original is at:
    http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3516,6 +3516,24 @@ Scalability
     selected these topics a nosy topics. This will eliminate the
     loop over all users.
 
+
+Adding action links to the index page
+-------------------------------------
+
+Add a column to the item.index.html template.
+
+Resolving the issue::
+
+  <a tal:attributes="href
+     string:issue${i/id}?:status=resolved&:action=edit">resolve</a>
+
+"Take" the issue::
+
+  <a tal:attributes="href
+     string:issue${i/id}?:assignedto=${user/id}&:action=edit">take</a>
+
+... and so on
+
 -------------------
 
 Back to `Table of Contents`_