10
|
1 <h1 tal:replace="structure here/manage_page_header">Header</h1>
|
|
2 <!-- ZOPE management tabs -->
|
|
3 <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing" tal:replace="structure here/manage_tabs">Tabs</h2>
|
|
4 <!-- end of ZOPE management tabs -->
|
|
5 <h3>Change Weights</h3>
|
|
6 <p>If there are significant errors in the labels, please check also the Metadata of the resource</p>
|
|
7 <form method="post" action="changeWeightsInFolder">
|
|
8 <input type="submit" value="Submit Changes">
|
|
9 <!-- Lists the Objects contained in this Object -->
|
|
10 <table>
|
|
11 <tr tal:repeat="item here/getNavItems">
|
|
12 <td tal:content="item/getId" />
|
|
13 <td><b>alt:</b><span tal:replace="item/weight" /></td>
|
|
14 <td><b>neu:</b><input size="20" tal:attributes="value item/weight; name item/getId"></td>
|
|
15 </tr>
|
|
16 <tr>
|
|
17 <td><input type="submit" value="Submit Changes"></td>
|
|
18 </tr>
|
|
19 </table>
|
|
20 </form>
|
|
21 <h1 tal:replace="structure here/manage_page_footer">Footer</h1> |