Files
aspnet-core-signalr-angular/app/shared/components/match.component.html
2016-09-30 12:22:16 +03:00

28 lines
861 B
HTML

<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>
<span class="label label-success">{{match.type}}</span>
</td>
<td>
<button type="button" class="btn btn-default btn-xs">
Subscribe to feed
</button>
</td>
</tr>
</tbody>
</table>