From 0fec037d72c82b04585ed0e3072573478a5fa0d4 Mon Sep 17 00:00:00 2001
From: Sebastien Robin <seb@nexedi.com>
Date: Wed, 22 Feb 2006 09:16:19 +0000
Subject: [PATCH] add one more column in order to see wich messages are
 currently in processing

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5767 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/CMFActivity/dtml/manageActivities.dtml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/product/CMFActivity/dtml/manageActivities.dtml b/product/CMFActivity/dtml/manageActivities.dtml
index ea6fa307c1..2fd0103afc 100755
--- a/product/CMFActivity/dtml/manageActivities.dtml
+++ b/product/CMFActivity/dtml/manageActivities.dtml
@@ -39,8 +39,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     <th align="left" valign="top">Named Parameters</th>
     <th align="left" valign="top">Processing Node</th>
     <th align="left" valign="top">Priority</th>
+    <th align="left" valign="top">Processing</th>
   </tr>
-  <dtml-in getMessageList>
+  <dtml-in expr="getMessageList(include_processing=1)">
       <tr>
         <td align="left" valign="top"><a href="manageCancel?object_path=<dtml-var "'/'.join(object_path)">&method_id=<dtml-var method_id>">Cancel</a> <a href="manageInvoke?object_path=<dtml-var "'/'.join(object_path)">&method_id=<dtml-var method_id>">Invoke</a></td>
         <td align="left" valign="top"><a href="<dtml-var "'/'.join(object_path)">"><dtml-var "'/'.join(object_path)"></a></td>
@@ -53,6 +54,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
         <td align="left" valign="top"><dtml-var "_.str(kw)[1:-1]"></td>
         <td align="left" valign="top"><dtml-var processing_node></td>
         <td align="left" valign="top"><dtml-var priority></td>
+        <td align="left" valign="top">
+          <dtml-if expr="processing is not None">
+             <dtml-var processing>
+          </dtml-if>
+        </td>
       </tr>
   </dtml-in>
 </table>
-- 
2.30.9