Learnt something new today. If we are to perform an inline commenting within a Jinja2 HTMl template...
The following will be rendered as a comment - via the {# and #} tags.
{# {{ Hello World }} #}
The following however may cause problem - because Jinja2 will try to parse the Python variable Hello and World, which may not exist.