On Apr 19, 2010, at 2:29 PM, cd34 wrote: > What is the attraction for using django forms? While I don't > particularly like the ToscaWidgets method, and I semi-like the > formencode method, I've always wondered what the fascination with the > django forms was. I didn't really find it to be better or worse, just > different. Single action per form was one nice feature, but, you get > that with formencode.
I'm using the formlib approach that Mike Bayer wrote about here: http://techspot.zzzeek.org/?p=28 I'm really rather liking it. It's substantially faster than toscawidgets or the formencode htmlfill method (it still uses Formencode for validation / errors), and its simplicity is extremely appealing. There's no, "how do I add a widget for XX", you just add another Mako def and its done. It's trivial to customize exactly how it needs to work on your site, and there's no reaching for a hefty set of documentation its so small. Cheers, Ben -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
