[imp] made readonly mode
[odoo/odoo.git] / addons / web / static / src / xml / base.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vim:fdl=1:
3 -->
4 <templates id="template" xml:space="preserve">
5 <t t-name="EmptyComponent">
6     <div></div>
7 </t>
8 <t t-name="Loading">
9     <div class="oe_loading">
10         Loading...
11     </div>
12 </t>
13 <t t-name="Notification">
14     <div class="oe_notification" t-translation="off">
15         <div id="oe_notification_default">
16             <a class="ui-notify-cross ui-notify-close" href="#">x</a>
17             <h1>#{title}</h1>
18             <p>#{text}</p>
19         </div>
20         <div id="oe_notification_alert" class="ui-state-error">
21             <a class="ui-notify-cross ui-notify-close" href="#">x</a>
22             <span style="float:left; margin:2px 5px 0 0;" class="ui-icon ui-icon-alert"></span>
23             <h1>#{title}</h1>
24             <p>#{text}</p>
25         </div>
26     </div>
27 </t>
28
29 <t t-name="CrashManager.warning">
30     <table cellspacing="0" cellpadding="0" border="0" class="oe-dialog-warning">
31     <tr>
32         <td><img t-att-src='_s + "/web/static/src/img/warning.png"' class="oe-dialog-icon"/></td>
33         <td>
34             <p>
35                 <t t-js="d">
36                     var message = d.message ? d.message : d.error.data.fault_code;
37                     d.html_error = context.engine.tools.html_escape(message)
38                         .replace(/\n/g, '<br/>');
39                 </t>
40                 <t t-raw="html_error"/>
41             </p>
42         </td>
43     </tr>
44     </table>
45 </t>
46 <t t-name="CrashManager.error">
47     <t t-if="!session.openerp_entreprise">
48         <span>Your version of OpenERP is unsupported. Support &amp; maintenance services are available here: <a href="http://www.openerp.com/support-or-publisher-warranty-contract" target="_blank">OpenERP Entreprise</a>.</span>
49     </t>
50     <t t-if="session.openerp_entreprise">
51         <div class="oe_error_send">
52             <div>
53                 <div class="oe_centeralign"><b>OpenERP Enterprise Contract.</b></div>
54                 <div><br/>Your report will be sent to the OpenERP Enterprise team.<br/></div><br/>
55                 <div>
56                     <label>Summary:</label><br/>
57                     <input id="issuename" type="text" class="oe_fielddiv"/>
58                 </div><br/><br/>
59                 <div>
60                     <label>Description:</label><br/>
61                     <textarea id="explanation" rows="6"></textarea>
62                 </div><br/><br/>
63                 <div>
64                     <label>What you did:</label><br/>
65                     <textarea id="remark" rows="6" ></textarea>
66                 </div>
67             </div>
68         </div><br/>
69     </t>
70     <div class="oe_error_detail">
71         <pre><t t-esc="error.message"/></pre>
72         <hr/>
73         <pre><t t-esc="error.data.debug"/></pre>
74     </div>
75 </t>
76
77 <t t-name="Login">
78     <div class="oe_login">
79         <div class="oe_login_bottom"> </div>
80         <div class="oe_login_error_message">Invalid username or password</div>
81         <div class="oe_login_pane">
82             <div class="oe_login_logo"><img src='/web/static/src/img/logo2.png'/></div>
83             <form action="" method="post">
84                 <div class="oe_login_dbpane" >
85                     Database:
86                     <input name="db" t-att-value="widget.selected_db || ''"/>
87                 </div>
88                 <ul>
89                     <li>Username</li>
90                     <li><input type="text" name="login" t-att-value="widget.selected_login || ''" autofocus="autofocus"/></li>
91                     <li>Password</li>
92                     <li><input type="password" name="password" t-att-value="widget.selected_password || ''"/></li>
93                     <li><button name="submit">Log in</button></li>
94                 </ul>
95             </form>
96             <div class="oe_login_footer">
97                 <a href="#" class="oe_login_manage_db">Manage Databases</a> |
98                 <a href="http://www.openerp.com">Powered by <span>OpenERP</span></a>
99             </div>
100         </div>
101     </div>
102 </t>
103 <t t-name="Login.dblist">
104     <select name="db">
105         <t t-foreach="db_list" t-as="db">
106             <t t-if="selected_db === db">
107                 <option t-att-value="db" selected="true">
108                     <t t-esc="db"/></option>
109             </t>
110             <t t-if="selected_db !== db">
111                 <option t-att-value="db"><t t-esc="db"/></option>
112             </t>
113         </t>
114     </select>
115 </t>
116
117 <t t-name="DatabaseManager">
118     <div class="oe_database_manager">
119         <div class="oe_database_manager_menu">
120             <ul class="oe_form_notebook">
121                 <li><a href="#db_create">Create</a></li>
122                 <li><a href="#db_drop">Drop</a></li>
123                 <li><a href="#db_backup">Backup</a></li>
124                 <li><a href="#db_restore">Restore</a></li>
125                 <li><a href="#db_change_password">Password</a></li>
126                 <li><a id="back_to_login" href="#">Back to Login</a></li>
127             </ul>
128             <form id="db_create" name="create_db_form" class="oe_forms" method="POST">
129                 <table align="center" class="db_option_table">
130                     <tr>
131                         <th colspan="2" class="option_string"> CREATE DATABASE </th>
132                     </tr>
133                     <tr>
134                         <td><label for="super_admin_pwd">Master password:</label></td>
135                         <td><input type="password" name="super_admin_pwd" class="required" value="admin"/></td>
136                     </tr>
137                     <tr>
138                         <td><label for="db_name">New database name:</label></td>
139                         <td><input type="text" name="db_name" class="required" matches="^[a-zA-Z][a-zA-Z0-9_]+$"/></td>
140                     </tr>
141                     <tr>
142                         <td><label for="demo_data">Load Demonstration data:</label></td>
143                         <td><input type="checkbox" name="demo_data"/></td>
144                     </tr>
145                     <tr>
146                         <td><label for="db_lang">Default language:</label></td>
147                         <td>
148                             <select name="db_lang" t-if="widget.lang_list">
149                                 <t t-foreach="widget.lang_list" t-as="lang">
150                                     <option t-att-value="lang[0]" t-att-selected="lang[0] === 'en_US' ? 'selected' : undefined"><t t-esc="lang[1]"/></option>
151                                 </t>
152                             </select>
153                         </td>
154                     </tr>
155                     <tr>
156                         <td><label for="create_admin_pwd">Admin password:</label></td>
157                         <td><input type="password" name="create_admin_pwd" class="required"/></td>
158                     </tr>
159                     <tr>
160                         <td><label for="create_confirm_pwd">Confirm password:</label></td>
161                         <td><input type="password" name="create_confirm_pwd" class="required" equalTo="input[name=create_admin_pwd]"/></td>
162                     </tr>
163                     <tr>
164                         <td colspan="2" align="right"><button class="oe_button">Create</button></td>
165                     </tr>
166                 </table>
167             </form>
168             <form id="db_drop" name="drop_db_form" class="oe_forms" method="POST">
169                 <table align="center" class="db_option_table">
170                     <tr>
171                         <th colspan="2" class="option_string"> DROP DATABASE </th>
172                     </tr>
173                     <tr>
174                         <td><label for="drop_db">Database:</label></td>
175                         <td>
176                             <select t-if="widget.db_list" name="drop_db" autofocus="autofocus">
177                                 <t t-foreach="widget.db_list" t-as="db">
178                                     <option t-att-value="db"><t t-esc="db"/></option>
179                                 </t>
180                             </select>
181                             <input t-if="!widget.db_list" name="drop_db" class="required" type="text" autofocus="autofocus"/>
182                         </td>
183                     </tr>
184                     <tr>
185                         <td><label for="drop_password">Master Password:</label></td>
186                         <td><input type="password" name="drop_pwd" class="required"/></td>
187                     </tr>
188                     <tr>
189                         <td colspan="2" align="right"><button class="oe_button">Drop</button></td>
190                     </tr>
191                 </table>
192             </form>
193             <form id="db_backup" name="backup_db_form" class="oe_forms" method="POST" target="backup-target" action="/web/database/backup">
194                 <input type="hidden" name="token"/>
195                 <table align="center" class="db_option_table">
196                     <tr>
197                         <th colspan="2" class="option_string"> BACKUP DATABASE </th>
198                     </tr>
199                     <tr>
200                         <td><label for="backup_db">Database:</label></td>
201                         <td>
202                             <select t-if="widget.db_list" name="backup_db" autofocus="autofocus">
203                                 <t t-foreach="widget.db_list" t-as="db">
204                                     <option t-att-value="db"><t t-esc="db"/></option>
205                                 </t>
206                             </select>
207                             <input t-if="!widget.db_list" name="backup_db" class="required" type="text" autofocus="autofocus"/>
208                         </td>
209                     </tr>
210                     <tr>
211                         <td><label for="backup_pwd">Master Password:</label></td>
212                         <td><input type="password" name="backup_pwd" class="required"/></td>
213                     </tr>
214                     <tr>
215                         <td colspan="2" align="right"><button class="oe_button">Backup</button></td>
216                     </tr>
217                 </table>
218             </form>
219             <form id="db_restore" name="restore_db_form" class="oe_forms" method="POST">
220                 <table align="center" class="db_option_table">
221                     <tr>
222                         <th colspan="2" class="option_string"> RESTORE DATABASE </th>
223                     </tr>
224                     <tr>
225                         <td><label for="restore_db">File:</label></td>
226                         <td><input type="file" name="db_file" class="required" autofocus="autofocus"/></td>
227                     </tr>
228                     <tr>
229                         <td><label for="restore_pwd">Master Password:</label></td>
230                         <td><input type="password" name="restore_pwd" class="required"/></td>
231                     </tr>
232                     <tr>
233                         <td><label for="new_db">New database name:</label></td>
234                         <td><input type="text" name="new_db" class="required"/></td>
235                     </tr>
236                     <tr>
237                         <td colspan="2" align="right"><button class="oe_button">Restore</button></td>
238                     </tr>
239                 </table>
240             </form>
241             <form id="db_change_password" name="change_pwd_form" class="oe_forms" method="POST">
242                 <table align="center" class="db_option_table">
243                     <tr>
244                         <th colspan="2" class="option_string"> CHANGE MASTER PASSWORD </th>
245                     </tr>
246                     <tr>
247                         <td><label for="old_pwd">Master password:</label></td>
248                         <td><input type="password" name="old_pwd" class="required" minlength="1" autofocus="autofocus"/></td>
249                     </tr>
250                     <tr>
251                         <td><label for="new_pwd">New master password:</label></td>
252                         <td><input type="password" name="new_pwd" class="required" minlength="1"/></td>
253                     </tr>
254                     <tr>
255                         <td><label for="confirm_pwd">Confirm new master password:</label></td>
256                         <td><input type="password" name="confirm_pwd" class="required" equalTo="input[name=new_pwd]" minlength="1"/></td>
257                     </tr>
258                     <tr>
259                         <td colspan="2" align="right"><button class="oe_button">Change Password</button></td>
260                     </tr>
261                 </table>
262             </form>
263         </div>
264     </div>
265 </t>
266
267 <t t-name="WebClient">
268     <table class="oe_webclient">
269         <tr>
270             <td colspan="2" class="oe_topbar">
271                 <div class="oe_menu_placeholder"/>
272                 <div class="oe_user_menu_placeholder"/>
273                 <div class="oe_systray"/>
274             </td>
275         </tr>
276         <tr>
277             <td class="oe_leftbar" valign="top">
278                 <a href="#" class="oe_logo"><img t-att-src='_s + "/web/static/src/img/logo.png"'/></a>
279                 <div class="oe_secondary_menus_container"/>
280                 <div class="oe_footer">
281                     Powered by <a href="http://www.openerp.com"><span>Open</span>ERP</a>
282                 </div>
283             </td>
284             <td class="oe_application">
285             </td>
286         </tr>
287     </table>
288 </t>
289
290 <t t-name="Menu">
291     <ul class="oe_menu" t-if="widget.data">
292         <li t-foreach="widget.data.data.children" t-as="menu">
293             <t t-call="Menu.secondary.link"/>
294         </li>
295     </ul>
296 </t>
297 <t t-name="Menu.more">
298     <li class="oe_menu_more_container">
299         <a href="#" class="oe_menu_more_link oe_dropdown_toggle">More</a>
300         <ul class="oe_menu_more" style="display: none;"/>
301     </li>
302 </t>
303 <t t-name="Menu.secondary">
304     <div t-foreach="widget.data.data.children" t-as="menu" style="display: none" class="oe_secondary_menu" t-att-data-menu-parent="menu.id">
305         <t t-foreach="menu.children" t-as="menu">
306             <div class="oe_secondary_menu_section">
307                 <t t-esc="menu.name"/>
308                 <!--
309                     Shall the section be still clickable ?
310                     <t t-call="Menu.secondary.link"/>
311                 -->
312             </div>
313             <t t-call="Menu.secondary.submenu"/>
314         </t>
315     </div>
316 </t>
317 <t t-name="Menu.secondary.submenu">
318     <ul t-if="menu.children.length" class="oe_secondary_submenu">
319         <li t-foreach="menu.children" t-as="menu">
320             <t t-call="Menu.secondary.link"/>
321             <!--<span class="oe_menu_label">8</span>-->
322             <t t-call="Menu.secondary.submenu"/>
323         </li>
324     </ul>
325 </t>
326 <t t-name="Menu.secondary.link">
327     <a t-attf-href="#menu_id=#{menu.id}&amp;action_id=#{menu.action ? menu.action.split(',')[1] : ''}"
328         t-att-class="menu.children.length ? 'oe_menu_toggler' : 'oe_menu_leaf'"
329         t-att-data-menu="menu.id"
330         t-att-data-action-model="menu.action ? menu.action.split(',')[0] : ''"
331         t-att-data-action-id="menu.action ? menu.action.split(',')[1] : ''">
332         <t t-esc="menu.name"/>
333         <t t-if="menu.needaction_enabled">
334             <div class="oe_menu_counter">
335                 <t t-esc="menu.needaction_counter"/>
336             </div>
337         </t>
338     </a>
339 </t>
340
341 <t t-name="UserMenu">
342     <ul class="oe_user_menu oe_topbar_item">
343         <li class="oe_dropdown">
344             <a href="#" class="oe_dropdown_toggle">
345                 <img class="oe_topbar_avatar" t-att-data-default-src="_s + '/web/static/src/img/user_menu_avatar.png'"/>
346                 <span class="oe_topbar_name"/>
347             </a>
348             <ul class="oe_dropdown_options">
349                 <!--<li><a href="#" data-menu="profile">Profile</a></li>-->
350                 <li><a href="#" data-menu="settings">Settings</a></li>
351                 <li><a href="#" data-menu="logout">Log out</a></li>
352                 <li><hr/></li>
353                 <li><a href="#" data-menu="about">About OpenERP</a></li>
354                 <li><hr/></li>
355             </ul>
356         </li>
357     </ul>
358 </t>
359 <t t-name="UserMenu.shortcut">
360     <li t-foreach="shortcuts" t-as="shortcut">
361         <a href="#" data-menu="shortcut" t-att-data-id="shortcut.res_id" t-att-data-shortcut-id="shortcut.id">
362             <t t-esc="shortcut.name"/>
363         </a>
364     </li>
365 </t>
366 <t t-name="About-Page">
367     <div>
368         <a class="oe_activate_debug_mode" href="?debug" style="float:right; font-size: 80%;">Activate the developper mode</a>
369         <h1 style="margin:0;">OpenERP</h1>
370         <h3 style="margin:15px 0;padding:0;">Version <t t-esc="version_info.version"/></h3>
371         <p>
372             Copyright Â© 2004-TODAY OpenERP SA. All Rights Reserved.<br />
373             OpenERP is a trademark of the <a target="_blank" href="http://openerp.com/" style="text-decoration: underline;">OpenERP SA Company</a>.
374         </p>
375         <p>
376             Licenced under the terms of <a target="_blank" href="http://www.gnu.org/licenses/agpl.html" style="text-decoration: underline;">GNU Affero General Public License</a>
377         </p>
378         <p>
379             For more information visit <a target="_blank" href="http://openerp.com/" style="text-decoration: underline;">OpenERP.com</a>
380         </p>
381     </div>
382 </t>
383 <t t-name="Change_Pwd">
384     <form name="change_password_form" class="oe_forms" method="POST">
385         <table align="center">
386             <tr>
387                 <td><label for="old_pwd">Old Password:</label></td>
388                 <td><input type="password" name="old_pwd"
389                            minlength="1" autofocus="autofocus"/></td>
390             </tr>
391             <tr>
392             <td><label for="new_password">New Password:</label></td>
393             <td><input type="password" name="new_password"
394                        minlength="1" autofocus="autofocus"/></td>
395             </tr>
396             <tr>
397                 <td><label for="confirm_pwd">Confirm Password:</label></td>
398                 <td><input type="password" name="confirm_pwd"
399                              minlength="1"/></td>
400             </tr>
401             <tr>
402                 <td colspan="2" align="right"><button class="oe_button">Change Password</button></td>
403             </tr>
404         </table>
405     </form>
406 </t>
407
408 <t t-name="ViewManager">
409     <div class="oe_view_manager">
410         <table class="oe_view_manager_header2">
411             <col width="33%"/>
412             <col width="33%"/>
413             <col width="34%"/>
414             <tr>
415                 <td colspan="2">
416                     <h2 class="oe_view_title" t-if="widget.flags.display_title !== false">
417                         <span class="oe_view_title_text"><t t-esc="widget.display_title()"/></span>
418                     </h2>
419                 </td>
420                 <td> <div class="oe_view_manager_view_search" t-opentag="true"/> </td>
421             </tr>
422             <tr>
423                 <td> <div class="oe_view_manager_buttons"/> </td>
424                 <td> <div class="oe_view_manager_sidebar"/> </td>
425                 <td>
426                     <ul class="oe_view_manager_switch oe_button_group oe_right">
427                         <t t-if="widget.views_src.length != 1" t-foreach="widget.views_src" t-as="view">
428                           <li><a t-attf-class="oe_vm_switch_#{view.view_type} oe_i" t-att-data-view-type="view.view_type" t-att-title="view.label || view.view_type">
429                             </a></li>
430                         </t>
431                     </ul>
432                     <div class="oe_view_manager_pager oe_right"/>
433                 </td>
434             </tr>
435         </table>
436         <div class="oe_view_manager_body">
437             <t t-foreach="widget.views_src" t-as="view">
438                 <div t-attf-class="oe_view_manager_view_#{view.view_type}"/>
439             </t>
440         </div>
441     </div>
442 </t>
443 <t t-name="ViewManagerAction" t-extend="ViewManager">
444     <t t-jquery="h2.oe_view_title" t-operation="prepend">
445         <a t-if="widget.flags.display_title !== false" class="oe-shortcut-toggle" title="Add / Remove Shortcut..."
446             href="javascript: void(0)"> </a>
447     </t>
448     <t t-jquery="h2.oe_view_title" t-operation="after">
449         <select t-if="widget.session.debug" class="oe_debug_view"/>
450     </t>
451 </t>
452 <t t-name="ViewManagerDebug">
453     <option value="">Debug View#<t t-esc="view.fields_view.view_id"/></option>
454     <option t-if="view_manager.active_view === 'form'" value="perm_read" data-views="form,page">View Log (perm_read)</option>
455     <option t-if="view_manager.active_view === 'form'" value="toggle_layout_outline">Toggle Form Layout Outline</option>
456     <option value="fields">View Fields</option>
457     <option value="fvg">Fields View Get</option>
458     <t t-if="view_manager.session.uid === 1">
459         <option value="manage_views">Manage Views</option>
460         <option value="edit" data-model="ir.ui.view" t-att-data-id="view.fields_view.view_id">Edit <t t-esc="_.str.capitalize(view.fields_view.type)"/>View</option>
461         <option t-if="view_manager.searchview" value="edit" data-model="ir.ui.view" t-att-data-id="view_manager.searchview.view_id">Edit SearchView</option>
462         <option t-if="view_manager.action" value="edit" t-att-data-model="view_manager.action.type" t-att-data-id="view_manager.action.id">Edit Action</option>
463         <option value="edit_workflow">Edit Workflow</option>
464     </t>
465 </t>
466 <t t-name="ViewManagerDebugViewLog">
467     <div class="oe_debug_view_log">
468         <label>ID:</label>
469         <span><t t-esc="perm.id"/></span>
470
471         <label>XML ID:</label>
472         <span><t t-esc="perm.xmlid"/></span>
473
474         <label>Creation User:</label>
475         <span><t t-esc="format(perm.create_uid, { 'type' : 'many2one' }, '/')"/></span>
476
477         <label>Creation Date:</label>
478         <span><t t-esc="format(perm.create_date, { 'type' : 'datetime' }, '/')"/></span>
479
480         <label>Latest Modification by:</label>
481         <span><t t-esc="format(perm.write_uid, { 'type' : 'many2one' }, '/')"/></span>
482
483         <label>Latest Modification Date:</label>
484         <span><t t-esc="format(perm.write_date, { 'type' : 'datetime' }, '/')"/></span>
485     </div>
486 </t>
487 <t t-name="ViewPager">
488     <div class="oe_pager_value">
489         <t t-raw="__content__"/>
490     </div>
491     <ul class="oe_pager_group">
492         <!--
493         <button class="oe_button oe_button_pager" type="button" data-pager-action="first">
494             <img t-att-src='_s + "/web/static/src/img/pager_first.png"'/>
495         </button>
496         -->
497         <li>
498             <a class="oe_i" type="button" data-pager-action="previous">(</a>
499         </li>
500         <li>
501             <a class="oe_i" type="button" data-pager-action="next">)</a>
502         </li>
503         <!--
504         <button class="oe_button oe_button_pager" type="button" data-pager-action="last">
505             <img t-att-src='_s + "/web/static/src/img/pager_last.png"'/>
506         </button>
507         -->
508     </ul>
509 </t>
510
511 <t t-name="Sidebar">
512     <div class="oe_sidebar">
513         <t t-foreach="widget.sections" t-as="section">
514             <div class="oe_form_dropdown_section">
515                 <button class="oe_dropdown_toggle"><t t-esc="section.label"/></button>
516                 <ul class="oe_dropdown_menu">
517                     <li t-foreach="widget.items[section.name]" t-as="item" t-att-class="item.classname">
518                         <a class="oe_sidebar_action_a" t-att-title="item.title" t-att-data-section="section.name" t-att-data-index="item_index" t-att-href="item.url" target="_blank">
519                             <t t-raw="item.label"/>
520                         </a>
521                     </li>
522                     <li t-if="section.name == 'files'" class="oe_sidebar_add" style="display:none;">
523                         Input type file stuff
524                     </li>
525                 </ul>
526             </div>
527         </t>
528     </div>
529 </t>
530 <t t-name="Sidebar.attachments">
531     <div class="oe-sidebar-attachments-toolbar">
532         <div class="oe-binary-file-set" style="float: right">
533             <form class="oe-binary-form" t-attf-target="#{element_id}_iframe"
534                 method="post" enctype="multipart/form-data" action="/web/binary/upload_attachment">
535                 <input type="hidden" name="session_id" t-att-value="session.session_id"/>
536                 <input type="hidden" name="callback" t-attf-value="#{element_id}_iframe"/>
537                 <input type="hidden" name="model" t-att-value="view.dataset.model"/>
538                 <input type="hidden" name="id" t-att-value="view.datarecord.id"/>
539                 <button class="oe_button" type="button">
540                     <img t-att-src='_s + "/web/static/src/img/throbber.gif"' width="16" height="16" style="display: none"/>
541                     <span>Add</span>
542                 </button>
543                 <input type="file" class="oe-binary-file" name="ufile" title="Add attachment"
544                     t-att-onclick="view.datarecord.id ? null : 'alert(\'No record selected ! You can only attach to existing record.\'); return false;'"/>
545             </form>
546             <iframe t-attf-id="#{element_id}_iframe" t-attf-name="#{element_id}_iframe" style="display: none"/>
547         </div>
548     </div>
549     <br style="clear: both"/>
550     <ul class="oe-sidebar-attachments-items">
551         <li t-foreach="attachments" t-as="attachment">
552             <t t-if="attachment.type == 'binary'" t-set="attachment.url" t-value="_s + '/web/binary/saveas?session_id='
553                 + session.session_id + '&amp;model=ir.attachment&amp;id=' + attachment.id
554                 + '&amp;field=datas&amp;filename_field=name&amp;t=' + (new Date().getTime())"/>
555             <a class="oe-sidebar-attachments-link" t-att-href="attachment.url" target="_blank">
556                 <t t-esc="attachment.name"/>
557             </a>
558             <a href="#" class="oe-sidebar-attachment-delete" t-att-data-id="attachment.id" t-attf-title="Delete the attachment #{attachment.name}">
559                 <img t-att-src='_s + "/web/static/src/img/attachments-close.png"' width="15" height="15" border="0"/>
560             </a>
561         </li>
562     </ul>
563 </t>
564
565 <t t-name="TreeView">
566     <select t-if="toolbar" style="width: 30%">
567     </select>
568     <table class="oe-treeview-table">
569         <thead>
570             <tr>
571                 <th t-foreach="fields_view" t-as="field"
572                     t-if="!field.attrs.modifiers.tree_invisible"
573                     class="treeview-header">
574                     <t t-esc="fields[field.attrs.name].string" />
575                 </th>
576             </tr>
577         </thead>
578         <tbody>
579         </tbody>
580     </table>
581 </t>
582 <tr t-name="TreeView.rows"
583         t-foreach="records" t-as="record"
584         t-att-id="'treerow_' + record.id"
585         t-att-data-id="record.id" t-att-data-level="level + 1">
586     <t t-set="children" t-value="record[children_field]"/>
587     <t t-set="class" t-value="children and children.length ? 'treeview-tr' : 'treeview-td'"/>
588     <t t-set="rank" t-value="'oe-treeview-first'"/>
589     <t t-set="style" t-value="'background-position: ' + 19*level + 'px; padding-left: ' + 19*level + 'px;'"/>
590
591     <td t-foreach="fields_view" t-as="field"
592         t-if="!field.attrs.modifiers.tree_invisible"
593         t-att-data-id="record.id"
594         t-att-style="color_for(record) + style "
595         t-attf-class="#{class} #{rank} #{(fields[field.attrs.name].type === 'float') or (fields[field.attrs.name].type === 'integer') ? 'oe-number' : ''}">
596
597         <span t-if="!field.attrs.modifiers.invisible" >
598             <t t-esc="render(record[field.attrs.name], fields[field.attrs.name])" />
599         </span>
600
601         <t t-set="class" t-value="'treeview-td'"/>
602         <t t-set="rank" t-value="''"/>
603         <t t-set="style" t-value="''"/>
604     </td>
605 </tr>
606
607 <table t-name="ListView" class="oe-listview-content">
608     <t t-set="columns_count" t-value="visible_columns.length + (options.selectable ? 1 : 0) + (options.deletable ? 1 : 0) + (options.isClarkGable ? 1 : 0)"/>
609     <thead>
610         <tr t-if="options.action_buttons !== false or options.pager !== false">
611             <th t-att-colspan="columns_count">
612                 <div class="oe_list_buttons"/>
613                 <div class="oe_list_sidebar"/>
614                 <div class="oe_list_pager"/>
615             </th>
616         </tr>
617         <tr t-if="options.header" class="oe-listview-header-columns">
618             <t t-foreach="columns" t-as="column">
619                 <th t-if="column.meta">
620                     <t t-esc="column.string"/>
621                 </th>
622             </t>
623             <th t-if="options.selectable" width="1"  >
624                 <input type="checkbox" class="all-record-selector"/>
625             </th>
626             <th t-if="options.isClarkGable" width="1"></th>
627             <t t-foreach="columns" t-as="column">
628                 <th t-if="!column.meta and column.invisible !== '1'" t-att-data-id="column.id"
629                     t-att-class="((options.sortable and column.tag !== 'button') ? 'oe-sortable' : null)">
630                     <t t-if="column.tag !== 'button'"><t t-esc="column.string"/></t>
631                 </th>
632             </t>
633             <th t-if="options.deletable" width="1"/>
634         </tr>
635     </thead>
636     <tfoot>
637         <tr>
638             <td t-if="options.selectable"/>
639             <td t-if="options.isClarkGable"/>
640             <td t-foreach="aggregate_columns" t-as="column" class="oe-list-footer oe-number"
641                 t-att-data-field="column.id" t-att-title="column.label">
642             </td>
643             <td t-if="options.deletable"/>
644         </tr>
645     </tfoot>
646 </table>
647 <div t-name="ListView.buttons" class="oe_list_buttons">
648     <t t-if="!widget.no_leaf and widget.options.action_buttons !== false">
649         <button type="button" class="oe_button oe_list_add" t-if="widget.options.addable">
650             <t t-esc="widget.options.addable"/>
651         </button>
652         <button type="button" class="oe_button oe_list_delete" t-if="widget.options.selectable and widget.options.deletable">
653             Delete
654         </button>
655     </t>
656 </div>
657 <t t-name="ListView.pager">
658     <div class="oe_list_pager" t-att-colspan="widget.columns_count">
659         <t t-if="!widget.no_leaf and widget.options.pager !== false" t-call="ViewPager">
660             <span class="oe-pager-state">
661             </span>
662         </t>
663     </div>
664 </t>
665 <t t-name="ListView.rows" t-foreach="records.length" t-as="index">
666     <t t-call="ListView.row">
667         <t t-set="record" t-value="records.at(index)"/>
668         <t t-set="row_parity" t-value="index_parity"/>
669     </t>
670 </t>
671 <tr t-name="ListView.row" t-att-class="row_parity"
672         t-att-data-id="record.get('id')"
673         t-att-style="view.style_for(record)">
674     <t t-foreach="columns" t-as="column">
675         <td t-if="column.meta">
676
677         </td>
678     </t>
679     <th t-if="options.selectable" class="oe-record-selector" width="1">
680         <t t-set="checked" t-value="options.select_view_id == record.get('id') ? 'checked' : null"/>
681         <input t-if="options.radio" type="radio" name="radiogroup" t-att-checked="checked"/>
682         <input t-if="!options.radio" type="checkbox" name="radiogroup" t-att-checked="checked"/>
683     </th>
684     <th t-if="options.isClarkGable" class="oe-record-edit-link" width="1">
685         <img src="/web/static/src/img/pencil.gif" width="12" height="12" class="oe-record-edit-link-img"/>
686     </th>
687     <t t-foreach="columns" t-as="column">
688         <t t-set="align" t-value="column.type === 'integer' or column.type == 'float'"/>
689         <td t-if="!column.meta and column.invisible !== '1'" t-att-title="column.help"
690             t-att-class="'oe-field-cell' + (align ? ' oe-number' : '')
691                          + (column.tag === 'button' ? ' oe-button' : '')"
692             t-att-data-field="column.id">
693             <t t-raw="render_cell(record, column)"/>
694         </td>
695     </t>
696     <td t-if="options.deletable" class='oe-record-delete' width="1">
697         <button type="button" name="delete" class="oe_i">d</button>
698     </td>
699 </tr>
700
701 <t t-name="FormView">
702     <div class="oe_formview">
703         <div class="oe_form_buttons"/>
704         <div class="oe_form_sidebar"/>
705         <div class="oe_form_pager"/>
706         <div class="oe_form_container"/>
707     </div>
708 </t>
709 <div t-name="FormView.buttons" class="oe_form_buttons">
710     <t t-if="widget.options.action_buttons !== false">
711         <span class="oe_form_buttons_view">
712             <button type="button" class="oe_button oe_form_button_edit">Edit</button>
713             <button type="button" class="oe_button oe_form_button_create">Create</button>
714             <button type="button" class="oe_button oe_form_button_duplicate">Duplicate</button>
715             <button type="button" class="oe_button oe_form_button_delete">Delete</button>
716         </span>
717         <span class="oe_form_buttons_edit">
718             <button type="button" class="oe_button oe_form_button_save">Save</button> or
719             <a href="#" class="oe_form_button_cancel">Discard</a>
720         </span>
721     </t>
722 </div>
723 <t t-name="FormView.pager">
724     <div class="oe_form_pager">
725         <t t-if="widget.options.pager !== false" t-call="ViewPager">
726             <span class="oe_pager_index">0</span><span class="oe_pager_separator"> / </span><span class="oe_pager_count">0</span>
727         </t>
728     </div>
729 </t>
730 <form t-name="FormView.set_default" class="oe_forms oe_frame">
731     <t t-set="args" t-value="widget.dialog_options.args"/>
732     <table style="width: 100%">
733         <tr>
734             <td>
735                 <label for="formview_default_fields"
736                        class="oe_label oe_align_right">
737                     Default:
738                 </label>
739             </td>
740             <td class="oe_form_required">
741                 <select id="formview_default_fields">
742                     <option value=""/>
743                     <option t-foreach="args.fields" t-as="field"
744                             t-att-value="field.name">
745                         <t t-esc="field.string"/> = <t t-esc="field.displayed"/>
746                     </option>
747                 </select>
748             </td>
749         </tr>
750         <tr t-if="args.conditions.length">
751             <td>
752                 <label for="formview_default_conditions"
753                        class="oe_label oe_align_right">
754                     Condition:
755                 </label>
756             </td>
757             <td>
758                 <select id="formview_default_conditions">
759                     <option value=""/>
760                     <option t-foreach="args.conditions" t-as="cond"
761                             t-att-value="cond.name + '=' + cond.value">
762                         <t t-esc="cond.string"/>=<t t-esc="cond.displayed"/>
763                     </option>
764                 </select>
765             </td>
766         </tr>
767         <tr>
768             <td colspan="2">
769                 <input type="radio" id="formview_default_self"
770                        value="self" name="scope" checked="checked"/>
771                 <label for="formview_default_self" class="oe_label"
772                        style="display: inline;">
773                     Only you
774                 </label>
775                 <br/>
776                 <input type="radio" id="formview_default_all"
777                        value="all" name="scope"/>
778                 <label for="formview_default_all" class="oe_label"
779                        style="display: inline;">
780                     All users
781                 </label>
782             </td>
783         </tr>
784     </table>
785 </form>
786
787 <t t-name="FormRenderingForm.manual">
788     <div class="oe_form_manual_layout"/>
789 </t>
790 <t t-name="FormRenderingForm">
791     <div class="oe_form_sheetbg">
792         <div t-attf-class="oe_form_sheet oe_form_sheet_width #{classnames}">
793             <group t-if="layout === 'auto'" col="4"/>
794         </div>
795     </div>
796 </t>
797 <t t-name="FormRenderingSheet" t-extend="FormRenderingForm">
798 </t>
799 <t t-name="FormRenderingGroup">
800     <t t-set="table">
801         <table border="0" cellpadding="0" cellspacing="0" width="100%" t-att-class="classnames"/>
802     </t>
803     <t t-if="string">
804         <fieldset class="oe_group_box">
805             <legend><t t-esc="string"/></legend>
806             <t t-raw="table"/>
807         </fieldset>
808     </t>
809     <t t-if="!string">
810         <t t-raw="table"/>
811     </t>
812 </t>
813 <t t-name="FormRenderingNotebook">
814     <div>
815         <ul t-attf-class="oe_form_notebook #{classnames}">
816             <li t-foreach="pages" t-as="page" t-att-modifiers="page.modifiers">
817                 <a t-attf-href="##{page.id}">
818                     <t t-esc="page.string"/>
819                 </a>
820             </li>
821         </ul>
822     </div>
823 </t>
824 <t t-name="FormRenderingNotebookPage">
825     <div t-attf-class="oe_form_notebook_page #{classnames}" t-att-id="id">
826         <group t-if="layout === 'auto'" col="4"/>
827     </div>
828 </t>
829 <t t-name="FormRenderingSeparator">
830     <div t-attf-class="oe_horizontal_separator #{classnames}">
831         <t t-esc="string"/>
832     </div>
833 </t>
834 <t t-name="FormRenderingLabel">
835     <label  t-att-for="_for"
836             t-att-title="help"
837             t-attf-class="#{classnames} oe_form_label#{help ? '_help' : ''} oe_align_#{align}">
838         <t t-esc="string"/>
839         <span t-if="help">?</span>
840     </label>
841 </t>
842
843 <t t-name="Widget">
844     Unhandled widget
845     <t t-js="dict">console.warn('Unhandled widget', dict.widget);</t>
846 </t>
847 <t t-name="WidgetLabel.tooltip">
848     <div class="oe_tooltip_string" t-if="widget.string">
849         <t t-esc="widget.node.attrs.string"/> <t t-if="debug and widget.nolabel">(nolabel)</t>
850     </div>
851     <p t-if="widget.node.attrs.help or (widget.field and widget.field.help)" class="oe_tooltip_help"><t t-esc="widget.node.attrs.help || widget.field.help"/></p>
852     <ul t-if="debug" class="oe_tooltip_technical">
853         <li data-item="field" t-if="widget.name">
854             <span class="oe_tooltip_technical_title">Field:</span>
855             <t t-esc="widget.name"/>
856         </li>
857         <li data-item="object" t-if="widget.view and widget.view.fields_view">
858             <span class="oe_tooltip_technical_title">Object:</span>
859             <t t-esc="widget.view.fields_view.model"/>
860         </li>
861         <li data-item="type" t-if="widget.field">
862             <span class="oe_tooltip_technical_title">Type:</span>
863             <t t-esc="widget.field.type"/>
864         </li>
865         <li t-if="widget.node.attrs.widget" data-item="widget">
866             <span class="oe_tooltip_technical_title">Widget:</span>
867             <t t-esc="widget.node.attrs.widget"/>
868         </li>
869         <li t-if="widget.node.attrs.size || (widget.field and widget.field.size)" data-item="size">
870             <span class="oe_tooltip_technical_title">Size:</span>
871             <t t-esc="widget.node.attrs.size || widget.field.size"/>
872         </li>
873         <li t-if="widget.node.attrs.context" data-item="context">
874             <span class="oe_tooltip_technical_title">Context:</span>
875             <t t-esc="widget.node.attrs.context_string"/>
876         </li>
877         <li t-if="widget.node.attrs.domain" data-item="domain">
878             <span class="oe_tooltip_technical_title">Domain:</span>
879             <t t-esc="widget.node.attrs.domain_string"/>
880         </li>
881         <li t-if="widget.node.attrs.modifiers and widget.node.attrs.modifiers != '{}'" data-item="modifiers">
882             <span class="oe_tooltip_technical_title">Modifiers:</span>
883             <t t-esc="widget.node.attrs.modifiers"/>
884         </li>
885         <li t-if="widget.field and widget.field.change_default" data-item="change_default">
886             <span class="oe_tooltip_technical_title">Change default:</span>
887             Yes
888         </li>
889         <li t-if="widget.node.attrs.on_change" data-item="on_change">
890             <span class="oe_tooltip_technical_title">On change:</span>
891             <t t-esc="widget.node.attrs.on_change"/>
892         </li>
893         <li t-if="widget.field and widget.field.relation" data-item="relation">
894             <span class="oe_tooltip_technical_title">Relation:</span>
895             <t t-esc="widget.field.relation"/>
896         </li>
897         <li t-if="widget.field and widget.field.selection" data-item="selection">
898             <span class="oe_tooltip_technical_title">Selection:</span>
899             <ul>
900                 <li t-foreach="widget.field.selection" t-as="option">
901                     [<t t-esc="option[0]"/>]
902                     <t t-if="option[1]"> - </t>
903                     <t t-esc="option[1]"/>
904                 </li>
905             </ul>
906         </li>
907     </ul>
908 </t>
909 <t t-name="FieldChar">
910     <t t-if="!widget.get('effective_readonly')">
911         <div class="oe_form_field_char">
912             <input t-att-type="widget.password ? 'password' : 'text'"
913                 t-att-id="widget.id_for_label"
914                 t-att-tabindex="widget.node.attrs.tabindex"
915                 t-att-autofocus="widget.node.attrs.autofocus"
916                 t-attf-class="field_char #{widget.is_field_number ? 'oe-number' : ''}"
917                 t-att-placeholder="widget.placeholder"
918             /><img class="oe_field_translate oe_input_icon" t-if="widget.field.translate" t-att-src='_s + "/web/static/src/img/icons/terp-translate.png"' width="16" height="16" border="0"/>
919         </div>
920     </t>
921     <t t-if="widget.get('effective_readonly')">
922         <span t-attf-class="oe_form_field_char #{widget.is_field_number ? 'oe-number' : ''}"/>
923     </t>
924 </t>
925 <t t-name="FieldEmail">
926     <t t-if="!widget.get('effective_readonly')">
927         <table class="oe_form_field_email" cellpadding="0" cellspacing="0" border="0">
928         <tr>
929             <td>
930                 <input type="text"
931                     t-att-id="widget.id_for_label"
932                     t-att-tabindex="widget.node.attrs.tabindex"
933                     t-att-autofocus="widget.node.attrs.autofocus"
934                 />
935             </td>
936             <td width="16">
937                 <button class="oe_button oe_field_button" tabindex="-1" type="button" title="Send an e-mail with your default e-mail client">
938                     <img t-att-src='_s + "/web/static/src/img/icons/terp-mail-message-new.png"'/>
939                 </button>
940             </td>
941         </tr>
942         </table>
943     </t>
944     <t t-if="widget.get('effective_readonly')">
945         <span>
946             <a href="#" class="oe_form_uri"/>
947         </span>
948     </t>
949 </t>
950 <t t-name="FieldUrl">
951     <t t-if="!widget.get('effective_readonly')">
952         <table class="oe_form_field_url" cellpadding="0" cellspacing="0" border="0">
953         <tr>
954             <td>
955                 <input type="text"
956                     t-att-id="widget.id_for_label"
957                     t-att-tabindex="widget.node.attrs.tabindex"
958                     t-att-autofocus="widget.node.attrs.autofocus"
959                 />
960             </td>
961             <td width="16">
962                 <button class="oe_button oe_field_button" tabindex="-1" type="button" title="Open this resource">
963                     <img t-att-src='_s + "/web/static/src/img/icons/gtk-ok.png"'/>
964                 </button>
965             </td>
966         </tr>
967         </table>
968     </t>
969     <t t-if="widget.get('effective_readonly')">
970         <span>
971             <a href="#" class="oe_form_uri"/>
972         </span>
973     </t>
974 </t>
975 <t t-name="FieldText">
976     <div class="oe_form_field_text">
977         <textarea rows="6"
978             t-att-name="widget.name"
979             class="field_text"
980             t-att-tabindex="widget.node.attrs.tabindex"
981             t-att-autofocus="widget.node.attrs.autofocus"
982         ></textarea>
983         <img class="oe_field_translate oe_input_icon" t-if="widget.field.translate"
984             t-att-src='_s + "/web/static/src/img/icons/terp-translate.png"' width="16" height="16" border="0"/>
985     </div>
986 </t>
987 <t t-name="web.datetimepicker">
988     <div class="oe_datepicker_root oe_form_field_datetime">
989         <input type="text" class="oe_datepicker_container" disabled="disabled" style="display: none;"/>
990         <input type="text"
991             t-att-name="widget.name"
992             t-attf-class="oe_datepicker_master field_#{widget.type_of_date} oe_form_field_#{widget.type_of_date}"
993         /><img class="oe_input_icon oe_datepicker_trigger" t-att-src='_s + "/web/static/src/img/ui/field_calendar.png"'
994              title="Select date" width="16" height="16" border="0"/>
995     </div>
996 </t>
997 <t t-name="FieldSelection">
998     <t t-if="!widget.get('effective_readonly')">
999         <div class="oe_form_field_selection">
1000             <select
1001                 t-att-name="widget.name"
1002                 t-att-tabindex="widget.node.attrs.tabindex"
1003                 t-att-autofocus="widget.node.attrs.autofocus"
1004                 t-att-id="widget.id_for_label">
1005                     <t t-foreach="widget.values" t-as="option">
1006                         <option><t t-esc="option[1]"/></option>
1007                     </t>
1008             </select>
1009         </div>
1010     </t>
1011     <t t-if="widget.get('effective_readonly')">
1012         <span class="field_selection"/>
1013     </t>
1014 </t>
1015 <t t-name="FieldMany2One">
1016     <t t-if="!widget.get('effective_readonly')">
1017         <table class="oe_form_field_many2one" cellpadding="0" cellspacing="0" border="0">
1018         <tr>
1019             <td valign="top">
1020                 <input type="text"
1021                     t-att-id="widget.id_for_label"
1022                     t-att-tabindex="widget.node.attrs.tabindex"
1023                     t-att-autofocus="widget.node.attrs.autofocus"
1024                 />
1025                 <span class="oe-m2o-drop-down-button">
1026                     <img t-att-src='_s + "/web/static/src/img/down-arrow.png"' /></span>
1027             </td>
1028             <td width="16">
1029                 <button class="oe_button oe_field_button oe-m2o-cm-button">
1030                     <img t-att-src='_s + "/web/static/src/img/icons/gtk-go-forward.png"'/>
1031                 </button>
1032             </td>
1033         </tr>
1034         </table>
1035     </t>
1036     <t t-if="widget.get('effective_readonly')">
1037         <span>
1038             <a href="#" class="oe_form_uri"/>
1039         </span>
1040     </t>
1041 </t>
1042 <t t-name="FieldMany2ManyTags">
1043     <div class="oe_form_field_many2manytags">
1044         <t t-if="! widget.get('effective_readonly')">
1045             <textarea rows="1" style="width: 100%"></textarea>
1046         </t>
1047     </div>
1048 </t>
1049 <t t-name="FieldMany2ManyTags.box">
1050     <t t-set="i" t-value="0"/>
1051     <t t-foreach="elements" t-as="el">
1052         <span class="oe_form_field_many2manytags_box" t-att-data-index="i">
1053             <t t-esc="el[1]"/>
1054         </span>
1055         <t t-set="i" t-value="i + 1"/>
1056     </t>
1057 </t>
1058 <t t-name="FieldReference">
1059     <table class="oe_form_field_reference oe_frame oe_forms" border="0" cellpadding="0" cellspacing="0">
1060     <tr>
1061         <td t-attf-class="oe_form_frame_cell oe_form_selection oe_form_view_reference_selection">
1062         </td>
1063         <td t-attf-class="oe_form_frame_cell oe_form_many2one oe_form_view_reference_m2o" nowrap="true" style="display: none">
1064         </td>
1065     </tr>
1066     </table>
1067 </t>
1068 <t t-name="FieldBoolean">
1069     <span class="oe_form_field_boolean">
1070         <input type="checkbox"
1071             t-att-id="widget.id_for_label"
1072             t-att-name="widget.name"
1073             t-att-tabindex="widget.node.attrs.tabindex"
1074             t-att-autofocus="widget.node.attrs.autofocus"
1075             class="field_boolean"/>
1076     </span>
1077 </t>
1078 <t t-name="FieldProgressBar">
1079     <div class="oe_form_field_progressbar" t-opentag="true">
1080         <span></span>
1081     </div>
1082 </t>
1083 <t t-name="FieldStatus.content">
1084     <ul class="oe-arrow-list">
1085         <t t-set="size" t-value="widget.to_show.length"/>
1086         <t t-foreach="_.range(size)" t-as="i">
1087             <li t-att-class="widget.to_show[i][0] === widget.selected_value ? 'oe-arrow-list-selected' : ''">
1088                 <span class="oe-arrow-list-before" t-if="i &gt; 0"></span><span><t t-esc="widget.to_show[i][1]"/></span><span class="oe-arrow-list-after" t-if="i &lt; size - 1"></span>
1089             </li>
1090         </t>
1091     </ul>
1092 </t>
1093 <t t-name="FieldStatus.content">
1094     <ul class="oe_form_steps">
1095         <t t-set="size" t-value="widget.to_show.length"/>
1096         <t t-foreach="_.range(size)" t-as="i">
1097             <li t-att-class="widget.to_show[i][0] === widget.selected_value ? 'oe_form_steps_active' : ''">
1098                 <t t-esc="widget.to_show[i][1]"/>
1099                 <img t-att-src='_s + "/web/static/src/img/form_steps.png"' class="oe_form_steps_arrow" t-if="i &lt; size - 1"/>
1100             </li>
1101         </t>
1102     </ul>
1103 </t>
1104 <t t-name="FieldBinaryImage">
1105     <table cellpadding="0" cellspacing="0" border="0" width="100%">
1106     <tr>
1107         <td class="oe_form_field-binary-image-placeholder" align="center">
1108
1109         </td>
1110     </tr>
1111     <tr>
1112         <td align="center" valign="bottom" height="25">
1113             <div class="oe-binary">
1114                 <table cellspacing="0" cellpadding="0" border="0">
1115                 <tr>
1116                     <td>
1117                         <div class="oe-binary-file-set">
1118                             <form class="oe-binary-form" t-att-target="widget.iframe"
1119                                 method="post" enctype="multipart/form-data" action="/web/binary/upload">
1120                                 <input type="hidden" name="session_id" value=""/>
1121                                 <input type="hidden" name="callback" t-att-value="widget.iframe"/>
1122                                 <button class="oe_button" type="button" title="Set Image">
1123                                     <img t-att-src='_s + "/web/static/src/img/icons/STOCK_DIRECTORY.png"'/>
1124                                 </button>
1125                                 <input type="file" class="oe-binary-file" name="ufile"
1126                                     t-att-tabindex="widget.node.attrs.tabindex"
1127                                     t-att-autofocus="widget.node.attrs.autofocus"
1128                                 />
1129                             </form>
1130                         </div>
1131                     </td>
1132                     <td>
1133                         <button class="oe_button oe-binary-file-clear" type="button" title="Clear">
1134                             <img t-att-src='_s + "/web/static/src/img/icons/STOCK_MISSING_IMAGE.png"'/>
1135                         </button>
1136                     </td>
1137                 </tr>
1138                 </table>
1139             </div>
1140             <div class="oe-binary-progress" style="display: none">
1141                 <img t-att-src='_s + "/web/static/src/img/throbber.gif"' width="16" height="16"/>
1142                 <b>Uploading ...</b>
1143             </div>
1144             <iframe t-att-id="widget.iframe" t-att-name="widget.iframe" style="display: none"/>
1145         </td>
1146     </tr>
1147     </table>
1148 </t>
1149 <t t-name="FieldBinaryImage-img">
1150     <img t-att-src='url' class="oe-binary-image field_image"
1151         t-att-border="widget.readonly ? 0 : 1"
1152         t-att-name="widget.name"
1153         t-att-width="widget.node.attrs.img_width || widget.node.attrs.width"
1154         t-att-height="widget.node.attrs.img_height || widget.node.attrs.height"
1155         t-att-style="'max-width: ' + (widget.$element.width() > 60 ? widget.$element.width() : 60) + 'px'"
1156     />
1157 </t>
1158 <t t-name="FieldBinaryFile">
1159     <t t-if="!widget.get('effective_readonly')">
1160         <table class="oe_form_field_binary" cellpadding="0" cellspacing="0" border="0">
1161         <tr>
1162             <td>
1163                 <input type="text" size="1" readonly="readonly"
1164                     t-att-name="widget.name"
1165                     t-att-tabindex="widget.node.attrs.tabindex"
1166                     t-att-autofocus="widget.node.attrs.autofocus"
1167                     class="field_binary"
1168                 />
1169             </td>
1170             <td class="oe-binary" nowrap="true">
1171                 <table cellspacing="0" cellpadding="0" border="0">
1172                 <tr>
1173                     <td>
1174                         <div class="oe-binary-file-set" style="width: 80px; height:22px;">
1175                             <form class="oe-binary-form" t-att-target="widget.iframe"
1176                                 method="post" enctype="multipart/form-data" action="/web/binary/upload">
1177                                 <input type="hidden" name="session_id" value=""/>
1178                                 <input type="hidden" name="callback" t-att-value="widget.iframe"/>
1179                                 <button class="oe_button oe_field_button" type="button" title="Set Image">
1180                                     <img t-att-src='_s + "/web/static/src/img/icons/STOCK_DIRECTORY.png"'/>
1181                                     <span>Select</span>
1182                                 </button>
1183                                 <input type="file" class="oe-binary-file" name="ufile"/>
1184                             </form>
1185                         </div>
1186                     </td>
1187                     <td>
1188                         <button class="oe_button oe-binary-file-save" type="button" title="Save As">
1189                             <img t-att-src='_s + "/web/static/src/img/icons/gtk-save.png"'/>
1190                             <span>Save As</span>
1191                         </button>
1192                     </td>
1193                     <td>
1194                         <button class="oe_button oe-binary-file-clear" type="button" title="Clear">
1195                             <img t-att-src='_s + "/web/static/src/img/icons/STOCK_MISSING_IMAGE.png"'/>
1196                             <span>Clear</span>
1197                         </button>
1198                     </td>
1199                 </tr>
1200                 </table>
1201             </td>
1202             <td class="oe-binary-progress" style="display: none" nowrap="true">
1203                 <img t-att-src='_s + "/web/static/src/img/throbber.gif"' width="16" height="16"/>
1204                 <b>Uploading ...</b>
1205                 <iframe t-att-id="widget.iframe" t-att-name="widget.iframe" style="display: none"/>
1206             </td>
1207         </tr>
1208         </table>
1209     </t>
1210     <t t-if="widget.get('effective_readonly')">
1211         <span>
1212             <a href="javascript:void(0)" class="oe_form_uri"/>
1213         </span>
1214     </t>
1215 </t>
1216 <t t-name="WidgetButton">
1217     <button type="button" class="oe_button oe_form_button"
1218         t-att-tabindex="widget.node.attrs.tabindex"
1219         t-att-autofocus="widget.node.attrs.autofocus">
1220         <img t-if="widget.node.attrs.icon" t-att-src="_s + '/web/static/src/img/icons/' + widget.node.attrs.icon + '.png'" width="16" height="16"/>
1221         <span t-if="widget.string"><t t-esc="widget.string"/></span>
1222     </button>
1223 </t>
1224 <t t-name="WidgetButton.tooltip" t-extend="WidgetLabel.tooltip">
1225     <t t-jquery="div.oe_tooltip_string" t-operation="replace">
1226         <div class="oe_tooltip_string" t-if="debug || widget.string">
1227             <t t-if="debug">
1228                 Button
1229                 <t t-if="widget.string">: </t>
1230                 <t t-if="!widget.string"> (no string)</t>
1231             </t>
1232             <t t-esc="widget.string"/>
1233         </div>
1234     </t>
1235     <t t-jquery="ul.oe_tooltip_technical" t-operation="append">
1236         <li t-if="widget.node.attrs.special" data-item="special">
1237             <span class="oe_tooltip_technical_title">Special:</span>
1238             <t t-esc="widget.node.attrs.special"/>
1239         </li>
1240         <t t-set="button_type" t-value="widget.node.attrs.type"/>
1241         <li t-if="button_type" data-item="button_type">
1242             <span class="oe_tooltip_technical_title">Button Type:</span>
1243             <t t-esc="button_type"/>
1244         </li>
1245         <li t-if="button_type === 'object'" data-item="button_method">
1246             <span class="oe_tooltip_technical_title">Method:</span>
1247             <t t-esc="widget.node.attrs.name"/>
1248         </li>
1249         <li t-if="button_type === 'action'" data-item="button_action">
1250             <span class="oe_tooltip_technical_title">Action ID:</span>
1251             <t t-esc="widget.node.attrs.name"/>
1252         </li>
1253     </t>
1254 </t>
1255
1256 <t t-name="TranslateDialog">
1257     <table t-if="widget.view.translatable_fields" class="oe_form oe_translation_form" border="0" cellpadding="0" cellspacing="0" width="100%">
1258     <tr>
1259         <td class="oe_form_separator" width="1%" nowrap="nowrap">
1260             <div class="oe_horizontal_separator">Field</div>
1261         </td>
1262         <th t-foreach="widget.languages" align="left">
1263             <div class="oe_horizontal_separator"><t t-esc="name"/></div>
1264         </th>
1265     </tr>
1266     <tr t-foreach="widget.view.translatable_fields" t-as="field" t-att-data-field="field.name">
1267         <td class="oe_form_group_cell" width="1%" nowrap="nowrap">
1268             <label class="oe_label"><t t-esc="field.node.attrs.string"/>:</label>
1269         </td>
1270         <td t-foreach="widget.languages" t-as="lg" class="oe_form_group_cell">
1271             <input t-if="field.type == 'char'" type="text" t-attf-name="#{lg.code}-#{field.name}" value="" data-value="" class="oe_trad_field" style="width: 100%"/>
1272             <textarea t-if="field.type == 'text'" t-attf-name="#{lg.code}-#{field.name}" data-value="" class="oe_trad_field" style="width: 100%"></textarea>
1273         </td>
1274     </tr>
1275     </table>
1276 </t>
1277
1278 <t t-name="One2Many.viewmanager" t-extend="ViewManager">
1279     <t t-jquery="span.oe_view_title_text" t-operation="replace"/>
1280
1281     <t t-jquery=".oe-view-manager-header">
1282         this.attr('t-if', 'views.length != 1');
1283     </t>
1284 </t>
1285 <t t-name="One2Many.formview" t-extend="FormView">
1286     <t t-jquery=".oe_form_buttons" t-operation="inner">
1287         <button type="button" class="oe_button oe_form_button_create">Add</button>
1288     </t>
1289 </t>
1290 <t t-name="One2Many.listview" t-extend="ListView">
1291     <t t-jquery="thead.ui-widget-header > tr:first">
1292         this.removeAttr('t-if');
1293     </t>
1294
1295     <t t-jquery="tfoot &gt; tr:last-child" t-operation="replace"/>
1296
1297     <t t-jquery="td.oe-actions">
1298         this.removeAttr('t-if');
1299     </t>
1300     <t t-jquery="td.oe-actions" t-operation="prepend">
1301         <h3 class="oe_view_title"><t t-esc="fields_view.arch.attrs.string"/></h3>
1302     </t>
1303 </t>
1304
1305 <div t-name="SearchView" class="oe_searchview">
1306 </div>
1307 <t t-name="SearchView.managed-filters">
1308     <option class="oe-filters-title" value="">Filters</option>
1309     <optgroup label="-- Filters --">
1310         <t t-foreach="filters" t-as="filter">
1311             <option t-attf-value="get:#{filter_index}"
1312                     t-att-disabled="filter.disabled and 'disabled'"
1313                     t-att-title="filter.disabled and disabled_filter_message">
1314                 <t t-esc="filter.name"/>
1315             </option>
1316         </t>
1317     </optgroup>
1318     <optgroup label="-- Actions --">
1319         <option value="advanced_filter">Add Advanced Filter</option>
1320         <option value="save_filter">Save Filter</option>
1321         <option value="add_to_dashboard">Add to Dashboard</option>
1322         <option value="manage_filters">Manage Filters</option>
1323     </optgroup>
1324 </t>
1325 <t t-name="SearchView.managed-filters.add">
1326     <div>
1327         <p>Filter Name:</p>
1328         <input type="text"/>
1329         <p>(Any existing filter with the same name will be replaced)</p>
1330     </div>
1331 </t>
1332 <t t-name="SearchView.add_to_dashboard">
1333     <div class="oe_forms">
1334         <p><b>Select Dashboard to add this filter to:</b></p>
1335         <select style="width: 100%; margin-right: 1em;">
1336             <option t-foreach="dashboards" t-as="menu" t-att-value="menu.id" t-att-selected="(menu.id == selected_menu_id) || undefined"><t t-esc="menu.name"/></option>
1337         </select>
1338         <p><b>Title of new Dashboard item:</b></p>
1339         <input type="text" style="width: 100%; margin-right: 1em;"/>
1340     </div>
1341 </t>
1342 <t t-name="SearchView.render_lines">
1343     <table class="oe-searchview-render-line" border="0" cellspacing="0" cellpadding="0"
1344            t-foreach="lines" t-as="line">
1345         <tr>
1346             <td t-foreach="line" t-as="widget" class="oe_searchview_field">
1347                 <t t-raw="widget.render(defaults)"/>
1348             </td>
1349         </tr>
1350     </table>
1351 </t>
1352 <button t-name="SearchView.filter" type="button"
1353         t-att-id="element_id"
1354         t-att-title="attrs.help"
1355         t-att-class="classes.join(' ')"
1356         t-att-style="style"
1357         t-att-autofocus="attrs.default_focus === '1' ? 'autofocus' : undefined">
1358     <img t-att-src="_s + '/web/static/src/img/icons/' + (attrs.icon || 'gtk-home') + '.png'" width="16" height="16"/>
1359     <br t-if="attrs.string"/>
1360     <t t-esc="attrs.string"/>
1361 </button>
1362 <ul t-name="SearchView.filters">
1363     <li t-foreach="widget.filters" t-as="filter">
1364         <t t-esc="filter.attrs.string or filter.attrs.name or 'Ω'"/>
1365     </li>
1366 </ul>
1367 <t t-name="SearchView.filters.facet">
1368     <div class="category oe_filter_category"><t t-esc="facet.get('category')"/></div>
1369
1370     <t t-set="val" t-value="facet.get('json')"/>
1371
1372     <div t-if="!(val instanceof Array)" class="search_facet_input_container">
1373         <t t-esc="facet.get('value')"/>
1374     </div>
1375     <t t-if="val instanceof Array">
1376         <div class="search_facet_input_container"
1377                 t-foreach="facet.get('json')" t-as="filter">
1378             <t t-esc="filter.attrs.string || filter.attrs.name"/>
1379         </div>
1380     </t>
1381
1382     <div class="search_facet_remove VS-icon VS-icon-cancel"/>
1383 </t>
1384 <t t-name="SearchView.field">
1385     <label t-att-class="'oe_label' + (attrs.help ? '_help' : '')"
1386            t-att-title="attrs.help"
1387            t-att-for="element_id"
1388            t-att-style="style">
1389         <t t-esc="attrs.string || attrs.name"/>
1390         <span t-if="attrs.help">?</span>
1391     </label>
1392     <div t-att-style="style">
1393         <input type="text" size="15" t-att-name="attrs.name"
1394                t-att-autofocus="attrs.default_focus === '1' ? 'autofocus' : undefined"
1395                t-att-id="element_id"
1396                t-att-value="defaults[attrs.name] || ''"/>
1397         <t t-if="filters.length" t-raw="filters.render(defaults)"/>
1398     </div>
1399 </t>
1400 <t t-name="SearchView.date">
1401     <label t-att-class="'oe_label' + (attrs.help ? '_help' : '')"
1402            t-att-title="attrs.help"
1403            t-att-for="element_id"
1404            t-att-style="style">
1405         <t t-esc="attrs.string || attrs.name"/>
1406         <span t-if="attrs.help">?</span>
1407     </label>
1408     <div t-att-style="style">
1409         <span t-att-id="element_id"/>
1410         <t t-if="filters.length" t-raw="filters.render(defaults)"/>
1411     </div>
1412 </t>
1413 <t t-name="SearchView.field.selection">
1414     <label t-att-title="attrs.help"
1415            t-att-class="'oe_label' + (attrs.help ? '_help' : '')"
1416            t-att-for="element_id"
1417            t-att-style="style">
1418         <t t-esc="attrs.string || attrs.name"/>
1419         <span t-if="attrs.help">?</span>
1420     </label>
1421     <div t-att-style="style">
1422         <select t-att-name="attrs.name" t-att-id="element_id"
1423                 t-att-autofocus="attrs.default_focus === '1' || undefined">
1424             <option t-if="prepend_empty"/>
1425             <t t-foreach="attrs.selection" t-as="option">
1426                 <t t-set="selected" t-value="defaults[attrs.name] === option[0]"/>
1427                 <option t-if="selected"
1428                         t-attf-selected="selected"
1429                         t-att-value="option_index">
1430                     <t t-esc="option[1]"/>
1431                 </option>
1432                 <option t-if="!selected" t-att-value="option_index">
1433                     <t t-esc="option[1]"/>
1434                 </option>
1435             </t>
1436         </select>
1437         <t t-if="filters.length" t-raw="filters.render(defaults)"/>
1438     </div>
1439 </t>
1440 <t t-name="SearchView.util.expand">
1441     <div t-att-class="'searchview_group ' + (expand == '0' ? 'folded' : 'expanded')">
1442         <a t-if="label" class="searchview_group_string" href="#">
1443             <t t-esc="label"/>
1444         </a>
1445         <div class="searchview_group_content">
1446             <t t-raw="content"/>
1447         </div>
1448     </div>
1449 </t>
1450 <t t-name="SearchView.group">
1451     <t t-call="SearchView.util.expand">
1452         <t t-set="expand" t-value="attrs.expand"/>
1453         <t t-set="label" t-value="attrs.string"/>
1454         <t t-set="content">
1455             <t t-call="SearchView.render_lines"/>
1456         </t>
1457     </t>
1458 </t>
1459 <div t-name="SearchView.advanced" class="oe_searchview_advanced">
1460     <h4>Advanced Search...</h4>
1461     <form>
1462         <ul>
1463
1464         </ul>
1465         <button class="oe_add_condition" type="button">Add a condition</button>
1466         <button class="oe_apply" type="submit">Apply</button>
1467     </form>
1468 </div>
1469 <t t-name="SearchView.extended_search.proposition">
1470     <li>
1471         <select class="searchview_extended_prop_field">
1472             <t t-foreach="widget.attrs.fields" t-as="field">
1473                 <option t-if="typeof field.store === 'undefined' || field.store || field.fnct_search"
1474                         t-att="{'selected': field === widget.attrs.selected ? 'selected' : null}"
1475                         t-att-value="field.name">
1476                     <t t-esc="field.string"/>
1477                 </option>
1478             </t>
1479         </select>
1480         <select class="searchview_extended_prop_op"/>
1481         <span class="searchview_extended_prop_value"/>
1482         <a class="searchview_extended_delete_prop"
1483                 href="javascript:void(0)"><span> </span></a>
1484     </li>
1485 </t>
1486 <t t-name="SearchView.extended_search.proposition.char">
1487     <input t-att-id="widget.element_id" class="field_char"/>
1488 </t>
1489 <t t-name="SearchView.extended_search.proposition.empty">
1490     <span t-att-id="widget.element_id"></span>
1491 </t>
1492 <t t-name="SearchView.extended_search.proposition.integer">
1493     <input type="number" t-att-id="widget.element_id" class="field_integer" step="1"/>
1494 </t>
1495 <t t-name="SearchView.extended_search.proposition.float">
1496     <input type="number" t-att-id="widget.element_id" class="field_float" step="0.01"/>
1497 </t>
1498 <t t-name="SearchView.extended_search.proposition.boolean">
1499 </t>
1500 <t t-name="SearchView.extended_search.proposition.selection">
1501     <select t-att-id="widget.element_id">
1502         <t t-foreach="widget.field.selection" t-as="element">
1503         <option t-att-value="element[0]"><t t-esc="element[1]"/></option>
1504         </t>
1505     </select>
1506 </t>
1507 <t t-name="SelectCreatePopup">
1508     <div>
1509         <table style="width:100%">
1510             <tr style="width:100%">
1511                 <td style="width:100%">
1512                     <div class="oe-select-create-popup-view-search" style="width:100%"></div>
1513                 </td>
1514             </tr>
1515             <tr style="width:100%">
1516                 <td style="width:100%">
1517                     <div class="oe-select-create-popup-view-list" style="width:100%"></div>
1518                 </td>
1519             </tr>
1520         </table>
1521         <div class="oe-select-create-popup-view-form" style="width:100%"></div>
1522     </div>
1523 </t>
1524 <t t-name="SelectCreatePopup.search.buttons">
1525     <button type="button" class="oe_button oe_selectcreatepopup-search-select" disabled="disabled">Select</button>
1526     <button type="button" class="oe_button oe_selectcreatepopup-search-close">Cancel</button>
1527 </t>
1528 <t t-name="SelectCreatePopup.form.buttons">
1529     <t t-if="widget.options.disable_multiple_selection">
1530         <button type="button" class="oe_button oe_selectcreatepopup-form-save">Save</button>
1531     </t>
1532     <t t-if="! widget.options.disable_multiple_selection">
1533         <button type="button" class="oe_button oe_selectcreatepopup-form-save-new">Save &amp; New</button>
1534         <button type="button" class="oe_button oe_selectcreatepopup-form-save">Save &amp; Close</button>
1535     </t>
1536     <button type="button" class="oe_button oe_selectcreatepopup-form-close">Cancel</button>
1537 </t>
1538 <t t-name="FormOpenPopup">
1539     <div>
1540         <div class="oe-form-open-popup-form-view" style="width:100%"></div>
1541     </div>
1542 </t>
1543 <t t-name="FormOpenPopup.form.buttons">
1544     <button type="button" class="oe_button oe_formopenpopup-form-save">Save</button>
1545     <button type="button" class="oe_button oe_formopenpopup-form-close">Cancel</button>
1546 </t>
1547 <t t-extend="ListView.row">
1548     <!-- adds back padding to row being rendered after edition, if necessary
1549          (if not deletable add back padding), otherwise the row being added is
1550          missing columns
1551      -->
1552     <t t-jquery="&gt; :last" t-operation="after">
1553         <td t-if="edited and !options.deletable" class="oe-listview-padding"/>
1554     </t>
1555 </t>
1556
1557 <t t-name="view_editor">
1558     <table class="oe_view_editor">
1559         <t t-call="view_editor.row"/>
1560     </table>
1561 </t>
1562 <t t-name="view_editor.row">
1563     <tr  t-att-id="'viewedit-' + rec.id"  t-att-level="rec.level" t-foreach="data" t-as="rec">
1564         <td width="90%">
1565             <table class="oe_view_editor_field">
1566                 <tr>
1567                     <td width="16px" t-att-style="'background-position: ' + 20*rec.level + 'px; padding-left: ' + 20*rec.level + 'px'">
1568                         <img t-if="rec.child_id.length" t-att-id="'parentimg-' + rec.id"
1569                             src="/web/static/src/img/collapse.gif" width="16" height="16" border="0"/>
1570                     </td>
1571                     <td style="cursor: pointer;">
1572                         <a style="text-decoration:none" href="javascript:void(0);">
1573                             <t t-esc="rec.name"/>
1574                         </a>
1575                     </td>
1576                 </tr>
1577             </table>
1578         </td>
1579         <td width="2%">
1580             <img t-if="rec.att_list.length"
1581                 id="side-add" src="/web/static/src/img/icons/gtk-add.png" style="cursor: pointer;"/>
1582         </td>
1583         <td width="2%">
1584             <img  id="side-remove" src="/web/static/src/img/icons/gtk-remove.png" style="cursor: pointer;"/>
1585         </td>
1586         <td width="2%">
1587             <img t-if="rec.att_list.length and !_.include(no_properties, rec.att_list[0])"
1588                 id="side-edit" src="/web/static/src/img/icons/gtk-edit.png" style="cursor: pointer;"/>
1589         </td>
1590         <td width="2%">
1591             <img t-if="rec.att_list.length"
1592                 id="side-up" src="/web/static/src/img/icons/gtk-go-up.png" style="cursor: pointer;"/>
1593         </td>
1594         <td width="2%">
1595             <img t-if="rec.att_list.length"
1596                 id="side-down" src="/web/static/src/img/icons/gtk-go-down.png" style="cursor: pointer;"/>
1597         </td>
1598         <t t-if="rec.child_id.length">
1599             <t t-set="data" t-value="rec.child_id"/>
1600             <t t-call="view_editor.row"/>
1601         </t>
1602     </tr>
1603 </t>
1604 <t t-name="vieweditor_char">
1605     <input type="text" t-att-id="widget.name" class="field_char" size="50"/>
1606 </t>
1607 <t t-name="vieweditor_selection">
1608     <select t-att-id="widget.name" >
1609         <t t-if="widget.selection" t-foreach="widget.selection" t-as="option">
1610             <option
1611                 t-att-value="typeof option === 'object' ? option[0] : option">
1612                 <t t-esc="typeof option === 'object' ? option[1] : option"/>
1613             </option>
1614         </t>
1615     </select>
1616 </t>
1617 <t t-name="vieweditor_boolean">
1618     <input type="checkbox" t-att-id="widget.name"/>
1619 </t>
1620
1621 <t t-name="ExportView">
1622     <a id="exportview" href="javascript: void(0)" style="text-decoration: none;color: #3D3D3D;">Export</a>
1623 </t>
1624 <table t-name="ExportTreeView" class="oe-export"
1625        style="background-color: #F3F3F3;">
1626     <tr>
1627         <td colspan="3">
1628             This wizard will export all data that matches the current search criteria to a CSV file.
1629             You can export all data or only the fields that can be reimported after modification.
1630         </td>
1631     </tr>
1632     <tr>
1633         <td colspan="3">
1634             <label for="import_compat">Export Type:</label>
1635             <select id="import_compat" name="import_compat">
1636                 <option value="yes">Import Compatible Export</option>
1637                 <option value="">Export all Data</option>
1638             </select>
1639
1640             <label for="export_format">Export Formats</label>
1641             <select id="export_format" name="export_format"></select>
1642         </td>
1643     </tr>
1644
1645     <tr>
1646         <th>Available fields</th>
1647         <th/>
1648         <th>
1649             Fields to export
1650             <a style="color: blue; text-decoration: none;" href="#" id="export_new_list">Save fields list</a>
1651             <div id="savenewlist"></div>
1652             <div id="ExistsExportList"></div>
1653         </th>
1654     </tr>
1655     <tr style="height: 400px;">
1656         <td class="oe_export_fields_selector_left">
1657             <div id="left_field_panel">
1658             </div>
1659         </td>
1660         <td class="oe_export_fields_selector_center">
1661             <!-- TODO: replace ids by 'oe_*' classes -->
1662             <button class="oe_button" id="add_field">Add</button>
1663             <button class="oe_button" id="remove_field">Remove</button>
1664             <button class="oe_button" id="remove_all_field">Remove All</button>
1665         </td>
1666         <td class="oe_export_fields_selector_right">
1667             <select name="fields_list" id="fields_list"
1668                     multiple="multiple"></select>
1669         </td>
1670     </tr>
1671 </table>
1672 <table t-name="ExportTreeView-Secondary"
1673        id="field-tree-structure" class="oe_export_fields_selector_export"
1674        cellspacing="0" cellpadding="0">
1675     <tr><th class="oe_export_tree_header"> Name </th></tr>
1676     <t t-call="ExportTreeView-Secondary.children"/>
1677 </table>
1678 <tr t-name="ExportTreeView-Secondary.children"
1679     t-foreach="fields" t-as="field"
1680     t-att-id="'treerow-' + field.id" class="oe_export_row">
1681     <td>
1682         <table class="tree_grid" border="0">
1683             <tr class="oe_export_row">
1684                 <t t-foreach="(field.id).split('/')" t-as="level" >
1685                     <t t-if="(field.id).split('/')[0] != level">
1686                         <td width="18" t-translation="off">&amp;nbsp;</td>
1687                     </t>
1688                 </t>
1689                 <td valign="top" align="left" style="cursor: pointer;" width="18">
1690                     <t t-if="field.children">
1691                         <t t-if="(field.id).split('/').length != 3">
1692                             <img t-att-id="'parentimg-' + field.id" t-att-src='_s + "/web/static/src/img/expand.gif"' width="16" height="16" border="0"/>
1693                         </t>
1694                     </t>
1695                 </td>
1696                 <td id="tree-column" valign="middle" align="left" style="cursor: pointer;">
1697                     <a t-att-id="'export-' + field.id"  t-att-string="field.string" href="javascript: void(0);" style="text-decoration: none;">
1698                         <t t-esc="field.string"/>
1699                     </a>
1700                 </td>
1701             </tr>
1702         </table>
1703     </td>
1704 </tr>
1705 <t t-name="ExportNewList">
1706     <tr>
1707         <th><label>Save as:</label></th>
1708         <td><input size="10" type="text" id="savelist_name"/></td>
1709         <td><button class="oe_button oe_export_button_export" id="add_export_list">Ok</button></td>
1710     </tr>
1711 </t>
1712 <t t-name="Exists.ExportList">
1713     <label for="saved_export_list">Saved exports:</label>
1714
1715     <select id="saved_export_list">
1716         <option></option>
1717         <t t-foreach="existing_exports" t-as="export">
1718             <option t-att-value="export.id"><t t-esc="export.name"/></option>
1719         </t>
1720     </select>
1721     <button class="oe_button oe_export_button_export" id="delete_export_list" type="button">Delete</button>
1722 </t>
1723
1724 <t t-name="ImportView">
1725     <a id="importview" href="javascript: void(0)" style="text-decoration: none;color: #3D3D3D;">Import</a>
1726 </t>
1727 <t t-name="ImportDataView">
1728 <form name="import_data" id="import_data" action="" method="post" enctype="multipart/form-data"
1729         class="oe-import oe-import-no-result">
1730     <input type="hidden" name="session_id" t-att-value="widget.session.session_id"/>
1731     <h2 class="separator horizontal">1. Import a .CSV file</h2>
1732     <p>Select a .CSV file to import. If you need a sample of file to import,
1733        you should use the export tool with the "Import Compatible" option.
1734     </p>
1735     <p>
1736         <label for="csvfile">CSV File:</label>
1737         <input type="file" id="csvfile" size="50" name="csvfile"/>
1738     </p>
1739     <h2 class="separator horizontal oe-import-result">2. Check your file format</h2>
1740     <div id="result" class="oe-import-result"></div>
1741     <fieldset class="oe-closed oe-import-result">
1742         <legend>Import Options</legend>
1743         <table>
1744             <tr>
1745                 <td colspan="4">
1746                     <label for="file_has_headers">Does your file have titles?</label>
1747                     <input type="checkbox" checked="checked"
1748                            id="file_has_headers"/>
1749                 </td>
1750             </tr>
1751             <tr>
1752                 <td><label for="csv_separator">Separator:</label></td>
1753                 <td><input type="text" name="csvsep" id="csv_separator" value=","/></td>
1754                 <td><label for="csv_delimiter">Delimiter:</label></td>
1755                 <td><input type="text" name="csvdel" id="csv_delimiter" value='"'/></td>
1756             </tr>
1757             <tr>
1758                 <td><label for="csv_encoding">Encoding:</label></td>
1759                 <td>
1760                     <select name="csvcode" id="csv_encoding">
1761                         <option value="utf-8">UTF-8</option>
1762                         <option value="latin1">Latin 1</option>
1763                     </select>
1764                 </td>
1765                 <td><label for="csv_skip" title="For use if CSV files have titles on multiple lines, skips more than a single line during import">
1766                     Lines to skip<sup>?</sup>:</label></td>
1767                 <td><input type="number" id="csv_skip" value="0" min="0"/></td>
1768             </tr>
1769         </table>
1770     </fieldset>
1771 </form>
1772 </t>
1773 <t t-name="ImportView.result">
1774     <table class="oe_import_grid" width="100%" style="margin: 5px 0;">
1775         <tr t-if="headers" class="oe_import_grid-header">
1776             <td t-foreach="headers" t-as="header" class="oe_import_grid-cell">
1777                 <t t-esc="header"/></td>
1778         </tr>
1779         <tr>
1780             <td t-foreach="records[0]" t-as="column">
1781                 <input class="sel_fields" placeholder="--- Don't Import ---"/><span class="oe-m2o-drop-down-button">
1782                         <img t-att-src='_s + "/web/static/src/img/down-arrow.png"' /></span>
1783             </td>
1784         </tr>
1785         <tr t-foreach="records" t-as="record" class="oe_import_grid-row">
1786             <td t-foreach="record" t-as="cell" class="oe_import_grid-cell">
1787                 <t t-esc="cell"/></td>
1788         </tr>
1789     </table>
1790 </t>
1791 <t t-name="ImportView.error">
1792     <p style="white-space:pre;">The import failed due to:<t t-esc="error.message"/></p>
1793     <t t-if="error.preview">
1794         <p>Here is a preview of the file we could not import:</p>
1795         <pre><t t-esc="error.preview"/></pre>
1796     </t>
1797 </t>
1798
1799 </templates>