1 <html xmlns:tal="http://xml.zope.org/namespaces/tal"
2 xmlns:metal="http://xml.zope.org/namespaces/metal"
3 xmlns:i18n="http://xml.zope.org/namespaces/i18n"
4 metal:use-macro="context/main_template/macros/master">
5 <body i18n:domain="plinn">
6 <h1 metal:fill-slot="header" i18n:translate="">Rename Items</h1>
7 <div metal:fill-slot="main"
8 tal:define="batch options/batch;
10 <form method="post" tal:attributes="action form/action">
11 <table class="listing" cellspacing="0">
14 <th i18n:translate="">Title</th>
16 <th i18n:translate="">URL</th>
18 <tr tal:repeat="item_info batch/listItemInfos">
20 <img src="" alt="" border="0" tal:attributes="src item_info/icon; alt item_info/type" i18n:attributes="alt"/>
21 <input type="hidden" name="noAjax" value="noAjax"/>
22 <input type="hidden" name="items.id:records" value="" tal:attributes="value item_info/id"/>
25 <input type="text" name="items.title:records" tal:attributes="value item_info/title"/>
29 <input type="text" name="items.new_id:records" value="" tal:attributes="value item_info/id"/>
33 <metal:macro metal:use-macro="context/form_widgets/macros/buttons"/>