Poniższy wiersz tabeli jest typowy.Sposób powtarzania kolejnych dwóch wierszy w AngularJS
<tr ng-repeat="item in items">
<td>{{item.id}}</td>
<td>{{item.subject}}</td>
<td>{{item.author}}</td>
<td>{{item.date}}</td>
</tr>
ale, jak powtórzyć dwa wiersze do każdego?
<tr ??>
<td rowspan=2>{{item.id}}</td>
<td colspan=2>{{item.subject}}</td>
</tr>
<tr ??>
<td>{{item.author}}</td>
<td>{{item.date}}</td>
</tr>
możliwy duplikat [Angular.js ng-repeat w wielu trs] (http://stackoverflow.com/questions/12979205/angular-js-ng-repeat-across-multiple-trs) – Amicable