Édition de l'url du serveur Solr.
[Plinn.git] / skins / custom_generic / folder_rename_template.pt
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;
9 form options/form">
10 <form method="post" tal:attributes="action form/action">
11 <table class="listing" cellspacing="0">
12 <tr>
13 <th><br/></th>
14 <th i18n:translate="">Title</th>
15 <th><br/></th>
16 <th i18n:translate="">URL</th>
17 </tr>
18 <tr tal:repeat="item_info batch/listItemInfos">
19 <td>
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"/>
23 </td>
24 <td>
25 <input type="text" name="items.title:records" tal:attributes="value item_info/title"/>
26 </td>
27 <td>•</td>
28 <td>
29 <input type="text" name="items.new_id:records" value="" tal:attributes="value item_info/id"/>
30 </td>
31 </tr>
32 </table>
33 <metal:macro metal:use-macro="context/form_widgets/macros/buttons"/>
34 </form>
35 </div>
36 </body>
37 </html>