Profilo: @schedule.Profile?.Name
@if (!string.IsNullOrEmpty(schedule.Description))
{
@schedule.Description
}
Tipo: @schedule.GetScheduleDescription()
@if (schedule.NextExecutionTime.HasValue)
{
Prossima esecuzione:
@schedule.NextExecutionTime.Value.ToString("dd/MM/yyyy HH:mm")
}
@if (schedule.LastExecutionTime.HasValue)
{
Ultima esecuzione:
@schedule.LastExecutionTime.Value.ToString("dd/MM/yyyy HH:mm")
}
@if (!string.IsNullOrEmpty(schedule.LastExecutionStatus))
{
"success", "failed" => "danger", "running" => "primary", _ => "secondary" })">
@schedule.LastExecutionStatus.ToUpper()
@if (schedule.LastExecutionRecordCount.HasValue)
{
(@schedule.LastExecutionRecordCount record)
}
}