Skip to content
Snippets Groups Projects
Unverified Commit ff3a0b12 authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[FIX] hr_evaluation: badly rendered form

The date was positioned inside the h1 and was badly rendered (field too small)
Fixes #2476
parent b9a006c1
No related branches found
No related tags found
No related merge requests found
......@@ -174,11 +174,11 @@
<label for="employee_id" class="oe_edit_only"/>
<h1>
<field name="employee_id" class="oe_inline" attrs="{'readonly': [('state', '=', 'done')]}" on_change="onchange_employee_id(employee_id)"/>
<field name="date" attrs="{'readonly': [('state', '=', 'done')]}"/>
</h1>
<label for="plan_id" class="oe_edit_only"/>
<h2><field name="plan_id" attrs="{'readonly': [('state', '=', 'done')]}"/></h2>
<group>
<field name="date" attrs="{'readonly': [('state', '=', 'done')]}"/>
<group colspan="4" attrs="{'invisible':['|', ('state','=','draft'), ('state', '=', 'wait')]}">
<field name="rating" attrs="{'readonly':[('state','&lt;&gt;','progress')]}"/>
<field name="date_close" readonly="1"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment