If you want some information to be shown on document only if {{ title }}
is Invoice
, then you can use simple conditional block.
{% if title == 'Invoice' %}
This text will be shown only if title is "Invoice"
{% endif %}
If you want some information to be shown on document only if {{ title }}
is Invoice
, then you can use simple conditional block.
{% if title == 'Invoice' %}
This text will be shown only if title is "Invoice"
{% endif %}