source: products/qPloneDropDownMenu/branches/0.2/www/editSubMenus.zpt @ 1

Last change on this file since 1 was 1, checked in by myroslav, 18 years ago

Building directory structure

File size: 918 bytes
Line 
1<h1 tal:replace="structure here/manage_page_header">Header</h1>
2<h2 tal:replace="structure here/manage_tabs">Tabs</h2>
3
4<h1> Edit DropDown Menu </h1>
5
6        <table>
7            <tr><th>Name</th><th>Id</th><th>Url</th><th>SubMenu</th></tr>
8
9            <tal:tabs tal:repeat="act here/listPortalTabActions">
10                <tr>
11                    <td tal:content="act/title">Title</td>
12                    <td tal:content="act/id">Id</td>
13                    <td tal:content="act/actionExpression">Action</td>
14                    <td align="right">
15                        <a href="editsubMenu?submenu_path=Path"
16                           tal:attributes="href string:manage_editMenuItems?submenu_path=${act/title}">
17                            Edit subMenu
18                        </a>
19                </tr>
20            </tal:tabs>
21
22        </table>
23       
24<h1 tal:replace="structure here/manage_page_footer">Footer</h1>
Note: See TracBrowser for help on using the repository browser.