I have a multidimensional array.
To demonstrate it in my view I use a ng-repeat in an ul within another ng-repeat in a li, this way:
<ul ng-repeat="section in sections">
<li>
{{section.name}}
</li>
<ul>
<li ng-repeat="tutorial in section.tutorials">
{{tutorial.name}}
</li>
</ul>
</ul>
How can I display these values in a table? Being that it is not possible this way:
<tr ng-repeat="section in sections">
<tr ng-repeat="tutorial in section.tutorials">
<td>{{:: tutorial.name }}</td>
</tr>
</tr>