Pinko Palino writes:
> 3. How I can delete (edit) those objects with HTML form/PYTHON scripr? I like to made interactive "delete" form similar to Zope managment interface.
You can look at the ZMI code....
The method is (from "OFS.ObjectManager"):
def manage_delObjects(self, ids=[], REQUEST=None):
"""Delete a subordinate object
The objects specified in 'ids' get deleted.
"""
Dieter