Skip to content

Instantly share code, notes, and snippets.

@wcadap
Created January 2, 2015 13:49
Show Gist options
  • Save wcadap/755d34cbe7fbaacf3111 to your computer and use it in GitHub Desktop.
Save wcadap/755d34cbe7fbaacf3111 to your computer and use it in GitHub Desktop.
<table class="table table-striped">
<thead>
<tr>
<td>Last Name</td>
<td>First Name</td>
<td>Email</td>
<td>Mobile</td>
<td></td>
</tr>
</thead>
<tbody>
<tr ng-repeat="contact in contacts | filter:search_txt ">
<td>{{contact.lastName}}</td>
<td>{{contact.firstName}}</td>
<td>{{contact.email}}</td>
<td>{{contact.mobile}}</td>
<td>
<a class="btn btn-primary" href="#/mycontacts/{{contact.id}}">
<i class="glyphicon glyphicon-edit"></i></a>
</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment