From the example on the website , it looks like you should do this:
{{ for(var prop in it) { }} <div>{{=prop}}</div> {{ for(var msgProp in it[prop]) { }} <div>{{=msgProp}}</div> {{ for(var numProp in it[prop][msgProp]) { }} <div>{{=prop}}: {{=it[prop][msgProp][numProp]}}</div> {{ } }} {{ } }} {{ } }}
However, you can simplify this object a bit with Javascript before passing it to the template to simplify the iteration.
source share