{% for item in list %}
{% if item.kind is defined and item.kind == '9735' %}
{% if zapAmounts[item.id] is defined %} {{ zapAmounts[item.id] }} sat {% else %} Zap {% endif %}
{% endif %}
{# Display Nostr link previews if links detected #} {% if commentLinks[item.id] is defined and commentLinks[item.id]|length > 0 %} {% endif %} {# Display tags if user logged in and has role ROLE_ADMIN #} {% if is_granted('ROLE_ADMIN') %} {% if item.tags is defined and item.tags|length > 0 %} {% endif %} {% endif %}
{% endfor %}