@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) {
ALARMS
@ListRecords.Count
} else {
ALARMS
}
@if (!compMode) { Current alarms @if (ListRecords.Count == 0) { @ListRecords.Count }@* else { @ListRecords.Count }*@ } else { @if (ListRecords.Count == 0) {
ACTIVE ALARMS:@ListRecords.Count
} @*else {
ACTIVE ALARMS:@ListRecords.Count
}*@ }
@if (!compMode) {
Alarm Analysis
}
@if (!compMode) { if (@ListRecords.Count == 0) {
All OK
} else {
    @foreach (var item in ListRecords) {
  • @item.Title
    @item.Value
  • }
} }
} else { }