Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove label from group tag in Odoo 11 in views

I want to show only the photo without the label which show the word Image and the line as showing in the photo i use group tag to make the screen two sides and i want only the photo in the left side without the label of it which is appear by default in group Is there ant ideas ?

like image 954
Ahmed Helal Ahmed Avatar asked Dec 24 '22 07:12

Ahmed Helal Ahmed


1 Answers

Add the attribute nolabel="1" to your image field element

<field name="field_name" nolabel="1" />
like image 161
ChesuCR Avatar answered Dec 28 '22 09:12

ChesuCR