view zpt/folder/manage_change_weights.zpt @ 235:7fcb9b18c4d1

CLOSED - # 147: changePublikation in Projects funktioniert nicht https://it-dev.mpiwg-berlin.mpg.de/tracs/webpage/ticket/147 Link war falsch auf der Seite: changePublications statt changeAdditionalPublications
author dwinter
date Wed, 04 Dec 2013 10:42:22 +0100
parents c711fe75d0ac
children
line wrap: on
line source

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