mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 09:17:47 +00:00
38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
<table class="table table-bordered box">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Match</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let match of matches">
|
|
<td><span class="teamName">{{match.Id}}</span></td>
|
|
<td><span class="teamScore"> {{match.Host}} vs {{match.Guest}} </span></td>
|
|
</tr>
|
|
<!--<tr>
|
|
<td colspan="2">
|
|
<div class="feed-table">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Update</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let feed of match.Feeds" feedHighlight>
|
|
<td>
|
|
<span class="feed-time">{{feed.CreatedAt | date:'shortTime' }}</span>
|
|
</td>
|
|
<td class="filterable-cell">
|
|
<span class="feed-update"> {{feed.Description}} </span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>-->
|
|
</tbody>
|
|
</table> |