@using ECM.JobRunner.Common.JobRunnerReference; @using ECM.JobRunner.Web.Data; @if (Profile == null) { } else {
@if (Profile.Steps.Count() == 0) {
No Jobs found.
} @foreach (var step in Profile.Steps) {
@if (step.Active) { } else { } @step.IndexName
Process @step.Scope with Method @step.Method
}
} @code { [Parameter] public ImportProfile? Profile { get; set; } }