Views - Examples - Two Panel / Box Page

<h1>Example Two Panel Page</h1>

<s:form>

<s:box>
<s:box title="Existing Users">
<p>The below table lists all existing products within the system.</p>
</s:box>

<s:function alias="display_table" table="my-package.products">
</s:box>

<s:box>
<s:box_header title="Create New Product">
<p>You may create a new product by completing the below form.</p>
</s:box_header>

<s:form_table>
<s:ft_select name="category_id" label="Category" required="1" data_source="hash.my-package.categories">
<s:ft_textbox name="name">
<s:ft_select value="create" label="Create New Product">
</s:form_table>

</s:box>