@foreach (var task in Backlog) {
@task.Name
Type: @task.Task.Replace("_", " ")
Status: @task.Status.Replace("_", " ")
Priority: @task.Priority
@if (task.Finished != null) {
Finished: @task.Finished
}
Created: @task.Created
Description: @task.Description
Notes: @task.Notes
}
@code { [Parameter] public List Backlog { get; set; } = default!; }