Schema and forms
- Automatic Zope 3 form generation is great, until you want to customize it (and you will)
- You run into the limitations of the young framework
- zope.formlib (previously zc.page) improves this a lot
- With zope.formlib, forms are set up in Python instead of ZCML, a lot more flexible
- Recommendation: Do not develop forms in Zope 3 without zope.formlib
|