Created
December 5, 2015 03:29
-
-
Save mekhami/9194480c10d3fc694ea1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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