Reputation: 12121
I have two forms, each with their own actions. Then I have a page which is supposed to embed these two forms in a single page.
Is it possible to embed/include other actions in an action?
Upvotes: 0
Views: 222
Reputation: 1300
I'm not sure what are you asking. If you want to include a form inside another form, HTML does not allow. You can pick a javascript based solution to simulate a embeded form or you can make the forms sibling and use absolute position to make it appear one inside another.
If you just want to add two templates in the same page, you can do that making them tags or using the render tag.
Upvotes: 1