Home > database >  Invalid block tag on line 5149: 'endif'. Did you forget to register or load this tag? Wher
Invalid block tag on line 5149: 'endif'. Did you forget to register or load this tag? Wher

Time:01-30

I'm not sure where I am going wrong here. I believe I have followed every rule here. Please point out if I missed something. I'd appreciate your help.

(% if tot86|floatformat > 0 %)
    <div >
        <div ><b>Income</b></div>
        <div ><b>{{tot86|floatformat}}</b></div>
        <div ><b>{{tot86|floatformat}}</b></div>
    </div>
    <div >
        <div ><b>AMOUNT PAYABLE</b></div>
        <div ><b>{{tot90|floatformat}}</b></div>
        <div ><b>{{tot91|floatformat}}</b></div>
    </div>
{% endif %}

CodePudding user response:

You have a typo error in if statement you used ( in place of { and ) in place of }. So change ( to { and ) to }

{% if tot86|floatformat > 0 %}
    <div >
        <div ><b>Income</b></div>
        <div ><b>{{tot86|floatformat}}</b></div>
        <div ><b>{{tot86|floatformat}}</b></div>
    </div>
    <div >
        <div ><b>AMOUNT PAYABLE</b></div>
        <div ><b>{{tot90|floatformat}}</b></div>
        <div ><b>{{tot91|floatformat}}</b></div>
    </div>
{% endif %}
  •  Tags:  
  • Related