21 lines
654 B
Plaintext
21 lines
654 B
Plaintext
@using static Models.TCPDATA
|
|
@*
|
|
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
*@
|
|
@{
|
|
Layout = null;
|
|
@model List<PARAs_Class>;
|
|
|
|
}
|
|
@foreach (var item in @Model)
|
|
{
|
|
<div style="min-height:auto;" class="info-box mb-1 bg-warning p-1">
|
|
<span class="info-box-icon"><i class="fas fa-tag"></i></span>
|
|
<div class="info-box-content" style="line-height:1;">
|
|
<span class="info-box-text"> DataSource @item.Initiator</span>
|
|
<span class="info-box-number"> Message @item.Message</span>
|
|
</div>
|
|
<!-- /.info-box-content -->
|
|
</div>
|
|
}
|