hello,
In this code how can I add the partner_id.title and make the partner_id.name on a new line?
<div class="col-xs-5 col-xs-offset-1"> <div t-field="doc.partner_id" t-options="{"widget": "contact", "fields": ["address", "name"], "no_marker": True}"/> </div>
This looks now so:
COMPANY, NAME
STREET
ZIP CITY
COUNTRY
But it should look like this:
COMPANY
TITLE NAME
STREET
ZIP CITY
COUNTRY
The space above when you only have a company name is the problem.
Can anyone help me ? I mean in a lot of countries there needs to be the name on a new line.
Thank you