I will have a look at that one too. In the meantime, can you check this post about how to post your code in the community in order to be easier to read?
When you have to paste a part of your code, the best way to do it is by using three simple quotes —> ` <— at the beginning and three at the end of your code.
For example instead of writing
{% ifi some_var != blank %}
this is shown when in input mode or some_var is filled in
{% endifi %}
you can add the 3 backticks: ` before and after the code, and the code looks like this:
{% ifi some_var != blank %}
this is shown when in input mode or some_var is filled in
{% endifi %}
This way, it w…