The if/else code isn’t working.
I would like when the result of | = Liquiditeitstest ratio
| {{ -total_value/benefit_in_kind_range3 | currency }} is bigger than 1 that the text “Uit de balansbenadering blijkt dat er na uitkering nog sprake is van een gunstige liquiditeitspositie.” appears. If smaller than 1 the warning “NIET VOLDOENDE LIQUIDITEITEN VOOR UITKERING” appears.
Is there someone who can assist me with this?
|**=**
{% assign total_value = 0 %}
{% capture code_10_parts %}
{% assign acc_range = custom.benefit_in_kind.range1 as:account_collection range:'4' accounts_var:benefit_in_kind %}
{% assign acc_value = period.accounts | range:acc_range %}
{% assign total_value = total_value+acc_value %}
{% assign acc_range = custom.benefit_in_kind.range2 as:account_collection range:'5' accounts_var:benefit_in_kind %}
{% assign acc_value = period.accounts | range:acc_range %}
{% assign total_value = total_value+acc_value %}
{% endcapture %}
|{{ total_value | currency }}
{% newline %}
| **/ Schulden op ten hoogste 1 jaar**
| {% input custom.benefit_in_kind.range3 as:account_collection range:'4' accounts_var:benefit_in_kind_range3 %} {{ -benefit_in_kind_range3 | currency }}**
{% newline %}
|--------|--------
{% newline %}
| **= Liquiditeitstest ratio**
| **{{ -total_value/benefit_in_kind_range3 | currency }}**
{% endstripnewlines %}
{% if -total_value/benefit_in_kind_range3 | currency > 1 %}
Uit de balansbenadering blijkt dat er na uitkering nog sprake is van een gunstige liquiditeitspositie.
{% else %}
**{::warningtext}NIET VOLDOENDE LIQUIDITEITEN VOOR UITKERING{:/warningtext}**
{% endif %}```