Skip to content

Instantly share code, notes, and snippets.

@mekhami
Created December 5, 2015 03:29
Show Gist options
  • Select an option

  • Save mekhami/9194480c10d3fc694ea1 to your computer and use it in GitHub Desktop.

Select an option

Save mekhami/9194480c10d3fc694ea1 to your computer and use it in GitHub Desktop.
<table class="table table-striped">
<tr>
<th>Name</th>
<th>Email</th>
<th>Attending</th>
<th>Allowed Extras</th>
<th>RSVP'd Extras</th>
</tr>
<div ng-repeat="person in rsvplist">
<tr>
<td>{{ person.name }}</td>
<td>{{ person.email }}</td>
<td>{{ person.attending }}</td>
<td>{{ person.allowed_extras }}</td>
<td>{{ person.confirmed_extras }}</td>
</tr>
</div>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment