36 lines
904 B
Plaintext
36 lines
904 B
Plaintext
@using MP.MONO.Data
|
|
@using MP.MONO.UI.Components
|
|
@using MP.MONO.Core.DTO
|
|
@using MP.MONO.UI.Data
|
|
|
|
@inject CurrentDataService MMDataService
|
|
|
|
@if (@ListRecords != null)
|
|
{
|
|
if (@ListRecords.Count == 0)
|
|
{
|
|
<div class="alert alert-success text-center display-4">All OK</div>
|
|
}
|
|
else
|
|
{
|
|
<ul class="list-group">
|
|
@foreach (var item in ListRecords)
|
|
{
|
|
<li class="list-group-item alarms list-group-item-action text-light bg-danger">
|
|
<div class="text-wrap textConsensed w-100 small " title="order">
|
|
@item.Title
|
|
<div class="">
|
|
<span class="text-wrap"> <b>@item.Value</b> </span>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
}
|
|
</ul>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
<LoadingDataSmall></LoadingDataSmall>
|
|
}
|
|
|