Improve markup
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/7fcc81b4 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/7fcc81b4 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/7fcc81b4 Branch: refs/heads/master Commit: 7fcc81b480754768d7553ed7d5b1fc87d73a5d97 Parents: 563cf1d Author: Howard M. Lewis Ship <[email protected]> Authored: Sat Apr 20 19:36:09 2013 -0400 Committer: Howard M. Lewis Ship <[email protected]> Committed: Sat Apr 20 19:36:09 2013 -0400 ---------------------------------------------------------------------- tapestry-core/src/test/app1/nested/ZoneDemo.tml | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/7fcc81b4/tapestry-core/src/test/app1/nested/ZoneDemo.tml ---------------------------------------------------------------------- diff --git a/tapestry-core/src/test/app1/nested/ZoneDemo.tml b/tapestry-core/src/test/app1/nested/ZoneDemo.tml index c3a67f2..d8c0f81 100644 --- a/tapestry-core/src/test/app1/nested/ZoneDemo.tml +++ b/tapestry-core/src/test/app1/nested/ZoneDemo.tml @@ -45,11 +45,17 @@ </t:block> <t:block id="voteForm"> - <t:form t:id="vote" zone="^"> - Vote: - <input type="submit" name="abstain" value="Abstain"/> - <t:submit t:id="voteYes" value="Yes"/> - <t:submit t:id="voteNo" value="No"/> + <t:form class="form-horizontal well" t:id="vote" zone="^"> + <div class="control-group"> + <label class="control-label">Vote:</label> + <div class="controls"> + <div class="btn-group"> += <input type="submit" name="abstain" value="Abstain" class="btn"/> + <t:submit t:id="voteYes" value="Yes"/> + <t:submit t:id="voteNo" value="No"/> + </div> + </div> + </div> </t:form> </t:block>
