28 lines
581 B
Plaintext
28 lines
581 B
Plaintext
@using MP.MONO.UI.Components
|
|
@using MP.MONO.Core.DTO
|
|
@using MP.MONO.UI.Data
|
|
|
|
@inject CurrentDataService MMDataService
|
|
|
|
@if (ListRecords != null && ListRecords.Count > 0)
|
|
{
|
|
<ul class="list-group">
|
|
@foreach (var item in ListRecords)
|
|
{
|
|
<li class="list-group-item list-group-item-action">
|
|
<DisplayRecordComponent currRecord="@item"></DisplayRecordComponent>
|
|
</li>
|
|
}
|
|
</ul>
|
|
|
|
}
|
|
else
|
|
{
|
|
<ul>
|
|
<li>Activity Log</li>
|
|
<li>User Actions Log</li>
|
|
</ul>
|
|
<LoadingDataSmall></LoadingDataSmall>
|
|
}
|
|
|