If you are building a custom form in the view, then yes, you should be able to do an include in the middle of it. If you just have the SQLFORM object and want something inserted when it is serialized in the view, it's trickier but probably doable (need to call response.render() and insert the result via server-side DOM). Can you show more details?
Anthony On Saturday, September 8, 2012 7:01:27 AM UTC-4, lyn2py wrote: > > I have a SQLFORM with many fields. I want to insert a html file (like > {{include abc.html}} in views) into the middle of the form. > > Can I do that? > --