Copie du formulaire de renommage des contenus (à partir du CMFDefault).
[Plinn.git] / skins / custom_generic / folder_rename_template.pt
1 <html metal:use-macro="context/main_template/macros/master">
2 <body>
3
4 <metal:slot metal:fill-slot="header" i18n:domain="cmf_default">
5 <h1 i18n:translate="">Rename Items</h1>
6 </metal:slot>
7
8 <metal:slot metal:fill-slot="main" i18n:domain="cmf_default"
9 tal:define="batch options/batch;
10 form options/form">
11 <form action="members_manage" method="post"
12 tal:attributes="action form/action"
13 ><metal:macro metal:use-macro="context/form_widgets/macros/hidden_vars" />
14 <table class="FormLayout">
15 <tr tal:repeat="item_info batch/listItemInfos">
16 <td width="8%"
17 ><img src="" alt="" border="0"
18 tal:attributes="src item_info/icon; alt item_info/type"
19 i18n:attributes="alt" /></td>
20 <td width="20%"
21 ><tal:span tal:replace="item_info/id">ID</tal:span>
22 <input type="hidden" name="ids:list" value=""
23 tal:attributes="value item_info/id" /></td>
24 <td width="5%"
25 ><strong i18n:translate="">to</strong></td>
26 <td
27 ><input type="text" name="new_ids:list" value=""
28 tal:attributes="value item_info/id" size="20" /></td>
29 </tr>
30 </table>
31 <metal:macro metal:use-macro="context/form_widgets/macros/buttons" />
32 </form>
33 </metal:slot>
34
35 </body>
36 </html>