Skip to content

Instantly share code, notes, and snippets.

@btucker
Created July 2, 2013 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save btucker/5909226 to your computer and use it in GitHub Desktop.
Save btucker/5909226 to your computer and use it in GitHub Desktop.
Two rows per item in angular.
<table>
<tr><td>Number</td><td>Price</td><tr>
<tbody ng-repeat="order in orders">
<tr><td>{{order.description}}</td></tr>
<tr>
<td>{{order.number}}</td>
<td>{{order.price}}</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment