Skip to content

Commit

Permalink
Step 6.2: Copy contents of app.html to PartiesList template
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 14, 2016
1 parent 82781e7 commit d198e1b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions client/imports/app/parties/parties-list.component.html
@@ -0,0 +1,12 @@
<div>
<parties-form></parties-form>

<ul>
<li *ngFor="let party of parties | async">
{{party.name}}
<p>{{party.description}}</p>
<p>{{party.location}}</p>
<button (click)="removeParty(party)">X</button>
</li>
</ul>
</div>

0 comments on commit d198e1b

Please sign in to comment.