On Wed, Jul 25, 2012 at 2:21 AM, Robert Forkel <[email protected]> wrote: > deform [1] should work with python3. But not having used simpleform > myself I cannot say whether it's a good replacement. From my > experience I'd say if you need full control of the HTML generated by > the form lib, deform may not fit the bill. > regards, > robert
I disagree. It is rather easy to customize deform to use a different template. In common cases, it is as simple as copying the template from deform into your own project and modifying it. Adjusting the template path accordingly will cause deform to pick up your override. See the deform_bootstrap package for an example. One-off customizations can also be achieved with slightly more digging, passing a custom template keyword to the constructor for any widget. -- 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.
