Files
aspnet-core-signalr-angular/app/shared/components/chat.component.html
2016-10-03 16:30:49 +03:00

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>Message</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let message of messages" feedHighlight>
<td>
<span class="feed-time">{{message.CreatedAt | date:'shortTime' }} [{{message.MatchId}}]</span>
</td>
<td class="filterable-cell">
<span class="feed-update"> {{message.Text}} </span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>