Can someone tell me how it works? I have not found the description in the documentation.
Examples:
<link rel='stylesheet' href='/website/static/src/css/bootswatch/amelia.min.css' t-ignore="true"/>
<t t-ignore="true">
....
</t>
<div class="pull-right" t-ignore="true" t-if="not editable">
...
</div>
No one knows?
The "t-ignore" attribute keeps the elements from inheriting the "branding" of the parent when you enable inherited branding. Branding being the "data-oe-*" and "t-*" attributes. Seems to be used in keeping track of where tags get moved to. See example of usage in report/models/report.py See also ir_qweb.py, and ir_ui_view.py See addons/base/tests/test_views.py, Hope that helps.