[IMP] project: better diplay of task/issue title
authorrsi-odoo <rsi@openerp.com>
Thu, 11 Sep 2014 11:44:39 +0000 (17:14 +0530)
committerRichard Mathot <rim@openerp.com>
Thu, 18 Sep 2014 13:46:51 +0000 (15:46 +0200)
addons/project/project_view.xml
addons/project_issue/project_issue_view.xml

index 3444f17..ab2c1a9 100644 (file)
                             options="{'fold_field': 'fold'}"/>
                     </header>
                     <sheet string="Task">
-                    <div class="oe_right">
-                        <field name="kanban_state" class="oe_inline" widget="kanban_state_selection"/>
+                    <div class="row">
+                        <h1 class="col-xs-11">
+                            <field name="name" placeholder="Task summary..." class="oe_inline"/>
+                        </h1>
+                        <div class="col-xs-1 text-right">
+                            <field name="kanban_state" class="oe_inline" widget="kanban_state_selection"/>
+                        </div>
                     </div>
-                    <h1>
-                        <field name="name" placeholder="Task summary..." class="oe_inline"/>
-                    </h1>
                     <group>
                         <group>
                             <field name="project_id" domain="[('state','not in', ('close', 'cancelled'))]" on_change="onchange_project(project_id)" context="{'default_use_tasks':1}"/>
index 236aea7..53b57fd 100644 (file)
                         options="{'fold_field': 'fold'}"/>
                 </header>
                 <sheet string="Issue">
-                    <div class="oe_right">
-                        <field name="kanban_state" class="oe_inline" widget="kanban_state_selection"/>
-                    </div>
                     <label for="name" class="oe_edit_only"/>
-                    <h1>
-                        <field name="name" class="oe_inline"/>
-                    </h1>
+                    <div class="row">
+                        <h1 class="col-xs-11">
+                            <field name="name" class="oe_inline"/>
+                        </h1>
+                        <div class="col-xs-1 text-right">
+                            <field name="kanban_state" class="oe_inline" widget="kanban_state_selection"/>
+                        </div>
+                    </div>
                     <label for="categ_ids" class="oe_edit_only"/>
                     <field name="categ_ids" widget="many2many_tags"/>
                     <group>