15 lines
505 B
Plaintext
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> |