Thank you @charlie,
Your second approach works fine for me.
This is already outside the initial topic but while experimenting with TWIG it seams like I noticed a bug which breaks preview of the content in Cornerstone. However I can not exactly tell the consequence when it happens. It looks something like on the following picture.
As you can see the syntax with ==
sign is correct and output on the front end works fine even when it happens. If you try to edit the page in Cornerstone further it dissapears after some manipulations with other element.
Here is my full syntax for that Header Element:
{% if {{dc:looper:field key="LevelID"}} == 10 and {{dc:looper:field key="CategoryID"}} == 2 %}
Городское спортивное мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 10 and {{dc:looper:field key="CategoryID"}} == 1 %}
Городское массовое мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 15 and {{dc:looper:field key="CategoryID"}} == 2 %}
Областное спортивное мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 15 and {{dc:looper:field key="CategoryID"}} == 1 %}
Областное массовое мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 20 and {{dc:looper:field key="CategoryID"}} == 2 %}
Спортивное мероприятие субъекта РФ
{% elseif {{dc:looper:field key="LevelID"}} == 20 and {{dc:looper:field key="CategoryID"}} == 1 %}
Массовое мероприятие субъекта РФ
{% elseif {{dc:looper:field key="LevelID"}} == 33 and {{dc:looper:field key="CategoryID"}} == 2 %}
Спортивное мероприятие федерального округа
{% elseif {{dc:looper:field key="LevelID"}} == 33 and {{dc:looper:field key="CategoryID"}} == 1 %}
Массовое мероприятие федерального округа
{% elseif {{dc:looper:field key="LevelID"}} == 40 and {{dc:looper:field key="CategoryID"}} == 2 %}
Спортивное всероссийское мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 40 and {{dc:looper:field key="CategoryID"}} == 1 %}
Массовое всероссийское мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 50 and {{dc:looper:field key="CategoryID"}} == 2 %}
Спортивное международное мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 50 and {{dc:looper:field key="CategoryID"}} == 1 %}
Массовое международное мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 60 and {{dc:looper:field key="CategoryID"}} == 2 %}
Спортивное континентальное мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 60 and {{dc:looper:field key="CategoryID"}} == 1 %}
Массовое континентальное мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 70 and {{dc:looper:field key="CategoryID"}} == 2 %}
Спортивное мировое мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 70 and {{dc:looper:field key="CategoryID"}} == 1 %}
Массовое мировое мероприятие
{% elseif {{dc:looper:field key="LevelID"}} == 10 and {{dc:looper:field key="EventTypeID"}} == 55 %}
Городской судейский семинар
{% elseif {{dc:looper:field key="LevelID"}} == 20 and {{dc:looper:field key="EventTypeID"}} == 55 %}
Региональный судейский семинар
{% elseif {{dc:looper:field key="LevelID"}} == 40 and {{dc:looper:field key="EventTypeID"}} == 55 %}
Всероссийский судейский семинар
{% else %}
Необходимо проверить LevelID и CategoryID
{% endif %}