Skip to content

Instantly share code, notes, and snippets.

@sunkay
Created April 21, 2013 20:51
Show Gist options
  • Save sunkay/5431035 to your computer and use it in GitHub Desktop.
Save sunkay/5431035 to your computer and use it in GitHub Desktop.
<div ng-controller="deviceListController">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Asset Tag</th>
<th>Owner</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in devices">
<td>{{item.name}}</td>
<td>{{item.assetTag}}</td>
<td>{{item.owner}}</td>
<td>{{item.desc}}</td>
<!-- Action CRUD drop down -->
<td><button ng-click="remove($index)"><i class="icon-trash"></i></button></td>
<td><a href="#/view/{{item.id}}"><i class="icon-edit"></i></a></td>
</tr>
</tbody>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment