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