Skip to content

Commit

Permalink
Step 15.15: Display response statistics on the list
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 27, 2016
1 parent 4879e06 commit fbe03cb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions client/imports/app/parties/parties-list.component.html
Expand Up @@ -20,6 +20,12 @@ <h1>Parties:</h1>
<p>{{party.description}}</p>
<p>{{party.location}}</p>
<button (click)="removeParty(party)">X</button>
<div>
Who is coming:
Yes - {{party | rsvp:'yes'}}
Maybe - {{party | rsvp:'maybe'}}
No - {{party | rsvp:'no'}}
</div>
</li>
</ul>

Expand Down

0 comments on commit fbe03cb

Please sign in to comment.