[Answered ]-{% if {club.c_type} == 'Tech' %} is giving error Code is working perfectly without it. Want to filter data on basis or Tech and Non Tech in same Page

1👍

It should only be:

{% if club.c_type == 'Tech' %}
SOME CODE  
{% endif %}

Leave a comment