Is there any way i could insert field names not just their values on a report?
For example: I am trying to create custom report for invoices to include company reference and VAT numbers on a report in form of "VAT: LTXXXXXX" not just the actual number.
The best would be t-field-options:
<div t-field="company.partner_id" t-field-options='{"widget": "contact", "fields": ["address", "name", "vat"],}'/>
add label option like:
<div t-field="company.partner_id" t-field-options='{"widget": "contact", "fields": ["address", "name", "vat"], "labels"=true}'/>
Is there something similar to it?