Hi, I followed this topic to display my select field values:
https://support.metabox.io/topic/twiq-if-condition-with-checkbox-list/
And it works generally, but the displayed value is doubled. You can see it here:
https://mega.nz/file/mt5WADDS#2fpZ_FGXn851-kvHx-WdbmU0sfW-2fktODsbf7Yr1TA
The code I used in the view:
{% set value = 'anulowany' %}
{% for item in user.status_wniosku %}
{% if value in item %}
<div class="status-anulowany">Anulowany</div>
{% endif %}
{% endfor %}
Again, I appreciate your help with this thing.