I have the following problem:
There is a loop and I will use the index to check the record in a if-condition.
So the record has a name and a number at the end of the name ( I describe it as +i, but it is wrong ).
{% for i in 1..10 %}
{% if record.name+i>}
{% endif %}
{% endfor %}
So I have different content which I can get over {{ record.name1 }} {{ record.name2 }} ...
So how can I add the index of the loop to the end of record.name in the if-condition? How is the syntax. Can someone help me please? Thanks