Skip to content

Commit

Permalink
#115 added item names
Browse files Browse the repository at this point in the history
  • Loading branch information
tareq89 committed Aug 16, 2016
1 parent 94bf302 commit f012b48
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion app/vendor-details/vendor-details.component.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
<div class="container center-block">
<div class="row">
<ul class="list-inline center-block">
<li *ngFor="let item of vendor.catagories">{{item.catagory}}</li>
<li *ngFor="let cat of vendor.catagories">{{cat.catagory}}</li>
</ul>
</div>
<div class="row vendor-name">
<h1>{{vendor.name}}</h1>
</div>

<div class="row" *ngFor="let cat of vendor.catagories">
<h3>{{cat.catagory}}</h3>
<hr>
<div class="row">
<ul>
<li *ngFor="let item of cat.itemlist">{{item.item}}</li>
</ul>
</div>
</div>
</div>

0 comments on commit f012b48

Please sign in to comment.