Files
aspnet-core-signalr-angular/app/home/home.component.html
2016-09-29 17:02:04 +03:00

29 lines
1.0 KiB
HTML

<div class="row">
<div class="col-xs-3" *ngFor="let match of matches">
<table class="table table-bordered box">
<thead>
<tr>
<th>Team</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="teamName">{{match.host}}</span></td>
<td><span class="teamScore"> {{match.hostScore}} </span></td>
</tr>
<tr>
<td><span class="teamName"> {{match.guest}} </span></td>
<td><span class="teamScore">{{match.guestScore}}</span></td>
</tr>
<tr>
<td colspan="2">
<button type="button" class="btn btn-default btn-lg btn-block">
Subscribe
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>