diff --git a/product/ERP5Form/Report.py b/product/ERP5Form/Report.py
index e698c47a18491ee46d926c592749a947570e43bc..9118a3768b02ea7ee8a79cf65819eb065b53743d 100644
--- a/product/ERP5Form/Report.py
+++ b/product/ERP5Form/Report.py
@@ -70,24 +70,28 @@ class ERP5Report(ERP5Form):
     """
         An ERP5Form which allows to aggregate a list of 
         forms each of which is rendered on an object with parameters.
-        
+
         Application: create an accounting book from ERP5 objects 
-        
+
         - Display the total of each account (report)
-        
+
         - List all accounts
-        
+
         - Display the transactions of each account (one form with listbox)
-        
+
         - List all clients
-        
+
         - Display the transactions of each client (one form with listbox)
-        
+
         - List all vendors
-        
+
         - Display the transactions of each vendor (one form with listbox)
-        
-          
+
+        TODO:
+        - Make sure that multiple reports can be run in parallel without conflicts
+
+        - Make sure that multiple reports can be run in parallel without losing
+          consistency (ie. concurrent update of the selection)
     """
     meta_type = "ERP5 Report"
     icon = "www/Form.png"