Mercurial > p > roundup > code
diff doc/customizing.txt @ 1816:61a23c293147
added another example
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 18 Sep 2003 23:41:01 +0000 |
| parents | 3ac35c8e1782 |
| children | 3d180e08fae0 |
line wrap: on
line diff
--- a/doc/customizing.txt Thu Sep 18 07:33:57 2003 +0000 +++ b/doc/customizing.txt Thu Sep 18 23:41:01 2003 +0000 @@ -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 @@ 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`_
