I'm working on Twig for templating in my Symfony2 project. I need to define a 2 dimensional array. I tried like
{% set fields = { {'name': 'description', 'value': '1'}, { 'name': 'abc', 'value': '2'}, { 'name':'tags', 'value': '3'} } %}
But I'm getting
A hash key must be a quoted string, a number, a name, or an expression enclosed in parentheses (unexpected token "punctuation" of value "{" in ABundle:XYZ:edit_a_page.html.twig at line 51
Not sure what is wrong with the above code.
What is the right syntax to set a 2 dimensional array in twig?
JSONnext time, TWIG nearly has the same array syntax