Merge branch 'master' of https://github.com/odoo/odoo
[odoo/odoo.git] / addons / hr / hr_view.xml
index f8dc1ca..d9a80b0 100644 (file)
@@ -45,8 +45,8 @@
                             <page string="Public Information">
                                 <group>
                                     <group string="Contact Information">
-                                        <field name="address_id" on_change="onchange_address_id(address_id)"
-                                            context="{'show_address': 1, 'default_customer': False}"
+                                        <field name="address_id" on_change="onchange_address_id(address_id)" 
+                                            context="{'show_address': 1}" 
                                             options='{"always_reload": True, "highlight_first_line": True}'/>
                                         <field name="mobile_phone"/>
                                         <field name="work_location"/>
@@ -75,8 +75,8 @@
                                         <field name="otherid" groups="base.group_hr_user"/>
                                     </group>
                                     <group string="Contact Information">
-                                        <field name="address_home_id"
-                                            context="{'show_address': 1, 'default_customer': False}"
+                                        <field name="address_home_id" 
+                                            context="{'show_address': 1}" 
                                             options='{"always_reload": True, "highlight_first_line": True}'/>
                                     </group>
                                     <group string="Status">
                 <field name="message_unread"/>
                 <templates>
                     <t t-name="kanban-box">
-                        <div class="oe_employee_vignette">
-                            <div class="oe_employee_image">
-                                <a type="open"><img t-att-src="kanban_image('hr.employee', 'image_medium', record.id.value)" class="oe_employee_picture"/></a>
+                        <div class="oe_employee_details">
+                            <div class="col-md-4">
+                                <a type="open"><img t-att-src="kanban_image('hr.employee', 'image_medium', record.id.value)" class="oe_employee_image"/></a>
                             </div>
-                            <div class="oe_employee_details">
+                            <div class="col-md-6">
                                 <h4>
                                     <a type="open"><field name="name"/><t t-if="record.login.raw_value"> (<field name="login"/>)</t></a>
                                 </h4>
                                 <ul>
                                     <li id="last_login">
                                         <span t-if="record.last_login.raw_value &amp;&amp; record.last_login.raw_value.is().today()" class="oe_kanban_button" style="font-size: 100%%">
-                                              <t t-esc="record.last_login.raw_value.toString('HH:mm')"/>
+                                              <t t-esc="moment(record.last_login.raw_value).format('LT')"/>
                                         </span>
                                     </li>
                                     <li t-if="record.job_id.raw_value"><field name="job_id"/></li>
                                 </div>
                             </div>
                         </div>
-                        <script>
-                            $('.oe_employee_picture').load(function() { if($(this).width() > $(this).height()) { $(this).addClass('oe_employee_picture_wide') } });
-                        </script>
                     </t>
                 </templates>
             </kanban>