Version 1.0
Returns the value of the title field of the tags.
{% for tag in response.product.tags %}
<div class="flag" >{{tag.title}}</div>
{% endfor %}
{{ response.tags.title }}
Novidade
Version 1.0
Returns the value of the color field of the tags.
{% for tag in response.product.tags %}
<div class="flag" style="background: {{tag.color}};">{{tag.title}}</div>
{% endfor %}
{{ response.tags.color }}
#CC6600