Mercurial > p > roundup > code
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 1815:705c270e662b | 1816:61a23c293147 |
|---|---|
| 1 =================== | 1 =================== |
| 2 Customising Roundup | 2 Customising Roundup |
| 3 =================== | 3 =================== |
| 4 | 4 |
| 5 :Version: $Revision: 1.98 $ | 5 :Version: $Revision: 1.99 $ |
| 6 | 6 |
| 7 .. This document borrows from the ZopeBook section on ZPT. The original is at: | 7 .. This document borrows from the ZopeBook section on ZPT. The original is at: |
| 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx | 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx |
| 9 | 9 |
| 10 .. contents:: | 10 .. contents:: |
| 3514 many users this will be a serious performance bottleneck. | 3514 many users this will be a serious performance bottleneck. |
| 3515 A way out will be to link from the topics to the users which | 3515 A way out will be to link from the topics to the users which |
| 3516 selected these topics a nosy topics. This will eliminate the | 3516 selected these topics a nosy topics. This will eliminate the |
| 3517 loop over all users. | 3517 loop over all users. |
| 3518 | 3518 |
| 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 | |
| 3519 ------------------- | 3537 ------------------- |
| 3520 | 3538 |
| 3521 Back to `Table of Contents`_ | 3539 Back to `Table of Contents`_ |
| 3522 | 3540 |
| 3523 .. _`Table of Contents`: index.html | 3541 .. _`Table of Contents`: index.html |
