<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
      metal:use-macro="context/main_template/macros/master">
  <body i18n:domain="plinn">
    <h1 metal:fill-slot="header" i18n:translate="">Rename Items</h1>
    <div metal:fill-slot="main"
         tal:define="batch options/batch;
                     form options/form">
      <form method="post" tal:attributes="action form/action">
        <table class="listing" cellspacing="0">
          <tr>
            <th><br/></th>
            <th i18n:translate="">Title</th>
            <th><br/></th>
            <th i18n:translate="">URL</th>
          </tr>
          <tr tal:repeat="item_info batch/listItemInfos">
            <td>
              <img src="" alt="" border="0" tal:attributes="src item_info/icon; alt item_info/type" i18n:attributes="alt"/>
              <input type="hidden" name="noAjax" value="noAjax"/>
              <input type="hidden" name="items.id:records" value="" tal:attributes="value item_info/id"/>
            </td>
            <td>
              <input type="text" name="items.title:records" tal:attributes="value item_info/title"/>
            </td>
            <td>•</td>
            <td>
              <input type="text" name="items.new_id:records" value="" tal:attributes="value item_info/id"/>
            </td>
          </tr>
        </table>
        <metal:macro metal:use-macro="context/form_widgets/macros/buttons"/>
      </form>
    </div>
  </body>
</html>