summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8ac1d58)
raw | patch | inline | side by side (parent: 8ac1d58)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 18 Sep 2003 23:41:01 +0000 (23:41 +0000) | ||
committer | richard <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 | patch | blob | history |
diff --git a/doc/customizing.txt b/doc/customizing.txt
index 7142592a35a0f360f1aee9d7f601ff18710e67c7..ee861d306d6336cc8bcc73d5f2bedc859c969570 100644 (file)
--- a/doc/customizing.txt
+++ b/doc/customizing.txt
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
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`_