Hi, I try to load css file inside my template but with no results.
<template id="report_quatations_document" inherit_id="sale.report_saleorder_document">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/my_module/static/src/css/tablas.css"/>
</xpath>
<xpath expr="//div[@class='page']//h2" position="replace">
<t t-if="doc.team_id.name == 'Laboratorio'">
<table>
<tbody>
<tr style="width: 33%;">
<td>FORMA DE ENVÍO</td>
<td>Fax</td>
<td>Email</td>
</tr>
<tr>
<td></td>
<td>Correo Postal Ordinario</td>
<td class="last-element">Mensajería</td>
</tr>
<tr>
<td></td>
<td>Correo Postal Certificado</td>
<td class="last-element">Entrega Personal</td>
</tr>
</tbody>
</table>
</xpath>
</template>
Is that (in bold) correct way to load the css file?