Skip to content

Instantly share code, notes, and snippets.

@RubyRonin
Created November 23, 2015 01:43
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 RubyRonin/e04576e90cb3ec7941a8 to your computer and use it in GitHub Desktop.
Save RubyRonin/e04576e90cb3ec7941a8 to your computer and use it in GitHub Desktop.
<div class="page-header">
<h1>List Tickets</h1>
</div>
<div ng-controller="ListTicketsCtrl">
<ul>
<li ng-repeat="ticket in tickets"><b>Name:</b> {{ticket.name}} <b>Phone:</b> {{ticket.phone}} <b>Email:</b> {{ticket.email}} <b>Gym Rep:</b> {{ticket.gymrep}} ID: {{ticket._id}} | <a href ng-click="removeItem()">Delete</a> </li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment