I nedd to check if record belongs to specific category "dogs". Is there some simple twig statement to do so? something like {% if 'dogs' in record %} or {% if record.category == 'dogs' %}
I cannot really find my way trought this, thnx
I nedd to check if record belongs to specific category "dogs". Is there some simple twig statement to do so? something like {% if 'dogs' in record %} or {% if record.category == 'dogs' %}
I cannot really find my way trought this, thnx
Simplest solution is
{% if 'dogs' in record.category %}