@model IndexModel
@foreach (var alert in Model.Alerts) {
@alert.CreatedOn.ToString()
@if (!string.IsNullOrWhiteSpace(alert.Device?.DeviceName)) {
@alert.Device.DeviceName
}

@alert.Message

}