Files
Twain/src/OAP/Oap.Theme/Views/OapApplicationForm-ListPart.cshtml
2024-04-06 19:11:00 -05:00

15 lines
505 B
Plaintext

@model OrchardCore.Lists.ViewModels.ListPartViewModel
@inject OrchardCore.ContentManagement.Display.IContentItemDisplayManager ContentItemDisplayManager
<div class="flex flex-col gap-x-4">
@foreach (var step in Model.ContentItems)
{
var stepContent = await ContentItemDisplayManager.BuildDisplayAsync(
step,
Model.Context.Updater,
Model.Context.DisplayType,
Model.Context.GroupId);
@await DisplayAsync(stepContent)
}
</div>