File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 22Customising Roundup
33===================
44
5- :Version: $Revision: 1.98 $
5+ :Version: $Revision: 1.99 $
66
77.. This document borrows from the ZopeBook section on ZPT. The original is at:
88 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3516,6 +3516,24 @@ Scalability
35163516 selected these topics a nosy topics. This will eliminate the
35173517 loop over all users.
35183518
3519+
3520+ Adding action links to the index page
3521+ -------------------------------------
3522+
3523+ Add a column to the item.index.html template.
3524+
3525+ Resolving the issue::
3526+
3527+ <a tal:attributes="href
3528+ string:issue${i/id}?:status=resolved&:action=edit">resolve</a>
3529+
3530+ "Take" the issue::
3531+
3532+ <a tal:attributes="href
3533+ string:issue${i/id}?:assignedto=${user/id}&:action=edit">take</a>
3534+
3535+ ... and so on
3536+
35193537-------------------
35203538
35213539Back to `Table of Contents`_
You can’t perform that action at this time.
0 commit comments