Forum Discussion
DougHenning1
Community Manager
You can combine the headers into a string with: {{ a.headers | join(",") }}
------------------------------
Doug Henning
------------------------------
AndrewPatricio1
2 years agoQrew Member
Thanks! That didn't quite work because it just gave me "none, none, none..." but it pointed me down the right track. Here's what I ended up doing:
{% for h in a.headers %}
name: {{h.name}}, value {{h.value}} --
{% endfor %}
------------------------------
Andrew Patricio
------------------------------