Is there a way to get all product tags in dictionary?
From this object:
product.product_template_attribute_value_ids
Or maybe there is simpler way then, what I'm doing.
currently I'm iterating with list comprehension:
[x.display_name.split(":") for x in product.product_template_attribute_value_ids]